From e14c9f91a0e72688a962151e05dedd97efeac36a Mon Sep 17 00:00:00 2001
From: cxy <1276771477@qq.com>
Date: Thu, 17 Oct 2024 13:42:17 +0800
Subject: [PATCH] =?UTF-8?q?vue=E5=8F=8A=E6=8F=92=E4=BB=B6=E7=9A=84?=
=?UTF-8?q?=E5=AE=89=E8=A3=85?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.idea/.gitignore | 8 +
.idea/delivery.iml | 9 +
.idea/misc.xml | 6 +
.idea/modules.xml | 8 +
.idea/vcs.xml | 6 +
node_modules/.yarn-integrity | 10 +
system/.gitignore | 24 ++
system/.vscode/extensions.json | 3 +
system/README.md | 5 +
system/index.html | 13 +
system/package.json | 19 ++
system/public/vite.svg | 1 +
system/src/App.vue | 30 ++
system/src/assets/vue.svg | 1 +
system/src/components/HelloWorld.vue | 43 +++
system/src/main.js | 5 +
system/src/style.css | 79 +++++
system/vite.config.js | 7 +
system/yarn.lock | 463 +++++++++++++++++++++++++++
yarn.lock | 4 +
20 files changed, 744 insertions(+)
create mode 100644 .idea/.gitignore
create mode 100644 .idea/delivery.iml
create mode 100644 .idea/misc.xml
create mode 100644 .idea/modules.xml
create mode 100644 .idea/vcs.xml
create mode 100644 node_modules/.yarn-integrity
create mode 100644 system/.gitignore
create mode 100644 system/.vscode/extensions.json
create mode 100644 system/README.md
create mode 100644 system/index.html
create mode 100644 system/package.json
create mode 100644 system/public/vite.svg
create mode 100644 system/src/App.vue
create mode 100644 system/src/assets/vue.svg
create mode 100644 system/src/components/HelloWorld.vue
create mode 100644 system/src/main.js
create mode 100644 system/src/style.css
create mode 100644 system/vite.config.js
create mode 100644 system/yarn.lock
create mode 100644 yarn.lock
diff --git a/.idea/.gitignore b/.idea/.gitignore
new file mode 100644
index 0000000..35410ca
--- /dev/null
+++ b/.idea/.gitignore
@@ -0,0 +1,8 @@
+# 默认忽略的文件
+/shelf/
+/workspace.xml
+# 基于编辑器的 HTTP 客户端请求
+/httpRequests/
+# Datasource local storage ignored files
+/dataSources/
+/dataSources.local.xml
diff --git a/.idea/delivery.iml b/.idea/delivery.iml
new file mode 100644
index 0000000..d6ebd48
--- /dev/null
+++ b/.idea/delivery.iml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/misc.xml b/.idea/misc.xml
new file mode 100644
index 0000000..862d09b
--- /dev/null
+++ b/.idea/misc.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/modules.xml b/.idea/modules.xml
new file mode 100644
index 0000000..adc6206
--- /dev/null
+++ b/.idea/modules.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/vcs.xml b/.idea/vcs.xml
new file mode 100644
index 0000000..35eb1dd
--- /dev/null
+++ b/.idea/vcs.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/node_modules/.yarn-integrity b/node_modules/.yarn-integrity
new file mode 100644
index 0000000..94cbf03
--- /dev/null
+++ b/node_modules/.yarn-integrity
@@ -0,0 +1,10 @@
+{
+ "systemParams": "win32-x64-115",
+ "modulesFolders": [],
+ "flags": [],
+ "linkedModules": [],
+ "topLevelPatterns": [],
+ "lockfileEntries": {},
+ "files": [],
+ "artifacts": {}
+}
\ No newline at end of file
diff --git a/system/.gitignore b/system/.gitignore
new file mode 100644
index 0000000..a547bf3
--- /dev/null
+++ b/system/.gitignore
@@ -0,0 +1,24 @@
+# Logs
+logs
+*.log
+npm-debug.log*
+yarn-debug.log*
+yarn-error.log*
+pnpm-debug.log*
+lerna-debug.log*
+
+node_modules
+dist
+dist-ssr
+*.local
+
+# Editor directories and files
+.vscode/*
+!.vscode/extensions.json
+.idea
+.DS_Store
+*.suo
+*.ntvs*
+*.njsproj
+*.sln
+*.sw?
diff --git a/system/.vscode/extensions.json b/system/.vscode/extensions.json
new file mode 100644
index 0000000..a7cea0b
--- /dev/null
+++ b/system/.vscode/extensions.json
@@ -0,0 +1,3 @@
+{
+ "recommendations": ["Vue.volar"]
+}
diff --git a/system/README.md b/system/README.md
new file mode 100644
index 0000000..1511959
--- /dev/null
+++ b/system/README.md
@@ -0,0 +1,5 @@
+# Vue 3 + Vite
+
+This template should help get you started developing with Vue 3 in Vite. The template uses Vue 3 `
+