Skip to content

Commit c8377d8

Browse files
committed
Move vue to vite, and add vapor
1 parent 2158135 commit c8377d8

20 files changed

+2443
-1482
lines changed

frameworks/keyed/vue-vapor/.gitignore

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
yarn-debug.log*
6+
yarn-error.log*
7+
pnpm-debug.log*
8+
lerna-debug.log*
9+
10+
node_modules
11+
dist
12+
dist-ssr
13+
*.local
14+
15+
# Editor directories and files
16+
.vscode/*
17+
!.vscode/extensions.json
18+
.idea
19+
.DS_Store
20+
*.suo
21+
*.ntvs*
22+
*.njsproj
23+
*.sln
24+
*.sw?

frameworks/keyed/vue-vapor/.npmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
legacy-peer-deps=false

frameworks/keyed/vue-vapor/index.html

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<!doctype html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6+
<title>Vite + Vue</title>
7+
<link href="/css/currentStyle.css" rel="stylesheet"/>
8+
</head>
9+
<body>
10+
<div id="app" class="container"></div>
11+
<script type="module" src="./src/main.js"></script>
12+
</body>
13+
</html>

0 commit comments

Comments
 (0)