Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Vue rebuild to updates folder #2213

Merged
merged 3 commits into from
Dec 18, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ <h2>Examples</h2>
<a href="examples/mithril/" data-source="https://mithril.js.org/" data-content="Mithril is a modern client-side Javascript framework for building Single Page Applications. It's small (< 8kb gzip), fast and provides routing and XHR utilities out of the box.">Mithril</a>
</li>
<li class="routing">
<a href="examples/vue/" data-source="http://vuejs.org" data-content="Vue.js provides the benefits of MVVM data binding and a composable component system with an extremely simple and flexible API.">Vue.js</a>
<a href="updates/vue/dist/" data-source="http://vuejs.org" data-content="Vue.js provides the benefits of MVVM data binding and a composable component system with an extremely simple and flexible API.">Vue.js</a>
</li>
<li class="routing">
<a href="examples/backbone_marionette/" data-source="http://marionettejs.com" data-content="Backbone.Marionette is a composite application library for Backbone.js that aims to simplify the construction of large scale JavaScript applications.">Marionette.js</a>
Expand Down
11 changes: 11 additions & 0 deletions updates/vue/.eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"root": true,
"env": {
"node": true
},
"extends": ["plugin:vue/vue3-essential", "eslint:recommended"],
"parserOptions": {
"parser": "@babel/eslint-parser"
},
"rules": {}
}
2 changes: 2 additions & 0 deletions updates/vue/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
.DS_Store
/node_modules
1 change: 1 addition & 0 deletions updates/vue/dist/assets/index-AN23XS_-.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions updates/vue/dist/assets/index-ebzV244v.js

Large diffs are not rendered by default.

Binary file added updates/vue/dist/favicon.ico
Binary file not shown.
21 changes: 21 additions & 0 deletions updates/vue/dist/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<!DOCTYPE html>
<html lang="en" data-framework="vue">
<head>
<meta charset="UTF-8">
<link rel="icon" href="./favicon.ico">
<meta name="description" content="A TodoMVC written in Vue." />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TodoMVC: Vue</title>
<script type="module" crossorigin src="./assets/index-ebzV244v.js"></script>
<link rel="stylesheet" crossorigin href="./assets/index-AN23XS_-.css">
</head>
<body>
<section class="todoapp">
</section>
<footer class="info">
<p>Double-click to edit a todo</p>
<p>Created by the TodoMVC Team</p>
<p>Part of <a href="http://todomvc.com">TodoMVC</a></p>
</footer>
</body>
</html>
20 changes: 20 additions & 0 deletions updates/vue/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<!DOCTYPE html>
<html lang="en" data-framework="vue">
<head>
<meta charset="UTF-8">
<link rel="icon" href="/favicon.ico">
<meta name="description" content="A TodoMVC written in Vue." />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TodoMVC: Vue</title>
</head>
<body>
<section class="todoapp">
</section>
<footer class="info">
<p>Double-click to edit a todo</p>
<p>Created by the TodoMVC Team</p>
<p>Part of <a href="http://todomvc.com">TodoMVC</a></p>
</footer>
<script type="module" src="/src/main.js"></script>
</body>
</html>
8 changes: 8 additions & 0 deletions updates/vue/jsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"compilerOptions": {
"paths": {
"@/*": ["./src/*"]
}
},
"exclude": ["node_modules", "dist"]
}
Loading