Skip to content

Commit

Permalink
code: 响应式数据
Browse files Browse the repository at this point in the history
  • Loading branch information
chengyanqi123 committed Apr 6, 2024
1 parent 88aebd0 commit d6b05d8
Show file tree
Hide file tree
Showing 23 changed files with 1,408 additions and 43 deletions.
3 changes: 3 additions & 0 deletions code/vue-example/.vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"recommendations": ["Vue.Official"]
}
1 change: 1 addition & 0 deletions code/vue-example/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# This example code
13 changes: 13 additions & 0 deletions code/vue-example/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="icon" href="/favicon.ico">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Vite App</title>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>
8 changes: 8 additions & 0 deletions code/vue-example/jsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"compilerOptions": {
"paths": {
"@/*": ["./src/*"]
}
},
"exclude": ["node_modules", "dist"]
}
19 changes: 19 additions & 0 deletions code/vue-example/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"name": "code-example",
"version": "0.0.1",
"private": false,
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview"
},
"dependencies": {
"vue": "^3.4.21"
},
"devDependencies": {
"@vitejs/plugin-vue": "^5.0.4",
"sass": "^1.72.0",
"vite": "^5.1.6"
}
}
Loading

0 comments on commit d6b05d8

Please sign in to comment.