Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit ff3b9f1

Browse files
committed
feat: add vue-jsx-vapor
1 parent 09540c8 commit ff3b9f1

21 files changed

+5194
-2
lines changed
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+
<link href="/css/currentStyle.css" rel="stylesheet" />
7+
<title>Vue Vapor</title>
8+
</head>
9+
<body>
10+
<div class="container" id="app"></div>
11+
<script type="module" src="./src/main.js"></script>
12+
</body>
13+
</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+
<link href="/css/currentStyle.css" rel="stylesheet" />
7+
<title>Vite App</title>
8+
</head>
9+
<body>
10+
<div id="app"></div>
11+
<script type="module" src="dist/main.js"></script>
12+
</body>
13+
</html>
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"compilerOptions": {
3+
"jsx": "preserve",
4+
"paths": {
5+
"@/*": ["./src/*"]
6+
}
7+
},
8+
"exclude": ["node_modules", "dist"]
9+
}

0 commit comments

Comments
 (0)