From d23e5bacb13482dedfeace0b492d4de15f777890 Mon Sep 17 00:00:00 2001
From: fonghehe <331002675@qq.com>
Date: Tue, 17 May 2022 18:57:32 +0800
Subject: [PATCH] feat: sunniejs/vue3 template project init
---
.env | 2 +
.eslintignore | 15 +
.eslintrc.js | 72 +
.gitignore | 25 +
.prettierignore | 9 +
.stylelintignore | 3 +
.vscode/extensions.json | 3 +
License | 21 +
README.md | 11 +
index.html | 42 +
package-lock.json | 47215 ++++++++++++++++++++++++++++
package.json | 88 +
pnpm-lock.yaml | 3067 ++
postcss.config.js | 16 +
prettier.config.js | 10 +
public/favicon.ico | Bin 0 -> 4286 bytes
src/App.vue | 14 +
src/api/index.ts | 12 +
src/assets/app.css | 11 +
src/assets/font/demo.css | 536 +
src/assets/font/iconfont.css | 37 +
src/assets/font/iconfont.json | 51 +
src/assets/font/iconfont.ttf | Bin 0 -> 3012 bytes
src/assets/font/iconfont.woff | Bin 0 -> 1992 bytes
src/assets/font/iconfont.woff2 | Bin 0 -> 1548 bytes
src/assets/logo.png | Bin 0 -> 6849 bytes
src/components/Basic/index.vue | 43 +
src/components/TitleBar/index.vue | 53 +
src/i18n/index.ts | 31 +
src/i18n/lang/en-us.ts | 12 +
src/i18n/lang/zh-cn.ts | 15 +
src/main.ts | 20 +
src/mock/index.ts | 22 +
src/plugins/nutUI.ts | 71 +
src/router/index.ts | 13 +
src/router/routes.ts | 48 +
src/store/index.ts | 10 +
src/store/modules/user.ts | 40 +
src/utils/index.ts | 20 +
src/utils/useAxiosApi.ts | 72 +
src/utils/useFetchApi.ts | 41 +
src/views/List/index.vue | 18 +
src/views/Member/index.vue | 57 +
src/views/home/index.vue | 85 +
src/views/login/index.vue | 61 +
stylelint.config.js | 89 +
tsconfig.json | 44 +
types/axios.d.ts | 53 +
types/config.d.ts | 161 +
types/global.d.ts | 96 +
types/index.d.ts | 27 +
types/module.d.ts | 16 +
types/store.d.ts | 48 +
types/utils.d.ts | 5 +
types/vue-router.d.ts | 45 +
vite.config.ts | 50 +
yarn.lock | 3628 +++
57 files changed, 56254 insertions(+)
create mode 100644 .env
create mode 100644 .eslintignore
create mode 100644 .eslintrc.js
create mode 100644 .gitignore
create mode 100644 .prettierignore
create mode 100644 .stylelintignore
create mode 100644 .vscode/extensions.json
create mode 100644 License
create mode 100644 README.md
create mode 100644 index.html
create mode 100644 package-lock.json
create mode 100644 package.json
create mode 100644 pnpm-lock.yaml
create mode 100644 postcss.config.js
create mode 100644 prettier.config.js
create mode 100644 public/favicon.ico
create mode 100644 src/App.vue
create mode 100644 src/api/index.ts
create mode 100644 src/assets/app.css
create mode 100644 src/assets/font/demo.css
create mode 100644 src/assets/font/iconfont.css
create mode 100644 src/assets/font/iconfont.json
create mode 100644 src/assets/font/iconfont.ttf
create mode 100644 src/assets/font/iconfont.woff
create mode 100644 src/assets/font/iconfont.woff2
create mode 100644 src/assets/logo.png
create mode 100644 src/components/Basic/index.vue
create mode 100644 src/components/TitleBar/index.vue
create mode 100644 src/i18n/index.ts
create mode 100644 src/i18n/lang/en-us.ts
create mode 100644 src/i18n/lang/zh-cn.ts
create mode 100644 src/main.ts
create mode 100644 src/mock/index.ts
create mode 100644 src/plugins/nutUI.ts
create mode 100644 src/router/index.ts
create mode 100644 src/router/routes.ts
create mode 100644 src/store/index.ts
create mode 100644 src/store/modules/user.ts
create mode 100644 src/utils/index.ts
create mode 100644 src/utils/useAxiosApi.ts
create mode 100644 src/utils/useFetchApi.ts
create mode 100644 src/views/List/index.vue
create mode 100644 src/views/Member/index.vue
create mode 100644 src/views/home/index.vue
create mode 100644 src/views/login/index.vue
create mode 100644 stylelint.config.js
create mode 100644 tsconfig.json
create mode 100644 types/axios.d.ts
create mode 100644 types/config.d.ts
create mode 100644 types/global.d.ts
create mode 100644 types/index.d.ts
create mode 100644 types/module.d.ts
create mode 100644 types/store.d.ts
create mode 100644 types/utils.d.ts
create mode 100644 types/vue-router.d.ts
create mode 100644 vite.config.ts
create mode 100644 yarn.lock
diff --git a/.env b/.env
new file mode 100644
index 0000000..e3e89cf
--- /dev/null
+++ b/.env
@@ -0,0 +1,2 @@
+VITE_TOKEN_KEY=tokenKey
+VITE_URL_PREFIX=/api
\ No newline at end of file
diff --git a/.eslintignore b/.eslintignore
new file mode 100644
index 0000000..348631b
--- /dev/null
+++ b/.eslintignore
@@ -0,0 +1,15 @@
+
+*.sh
+node_modules
+*.md
+*.woff
+*.ttf
+.vscode
+.idea
+dist
+/public
+/docs
+.husky
+.local
+/bin
+Dockerfile
diff --git a/.eslintrc.js b/.eslintrc.js
new file mode 100644
index 0000000..f7b53bf
--- /dev/null
+++ b/.eslintrc.js
@@ -0,0 +1,72 @@
+module.exports = {
+ root: true,
+ env: {
+ browser: true,
+ node: true,
+ es6: true,
+ },
+ parser: 'vue-eslint-parser',
+ parserOptions: {
+ parser: '@typescript-eslint/parser',
+ ecmaVersion: 2020,
+ sourceType: 'module',
+ jsxPragma: 'React',
+ ecmaFeatures: {
+ jsx: true,
+ },
+ },
+ extends: ['plugin:vue/vue3-recommended', 'plugin:@typescript-eslint/recommended', 'plugin:prettier/recommended'],
+ rules: {
+ 'vue/script-setup-uses-vars': 'error',
+ '@typescript-eslint/ban-ts-ignore': 'off',
+ '@typescript-eslint/explicit-function-return-type': 'off',
+ '@typescript-eslint/no-explicit-any': 'off',
+ '@typescript-eslint/no-var-requires': 'off',
+ '@typescript-eslint/no-empty-function': 'off',
+ 'vue/custom-event-name-casing': 'off',
+ 'no-use-before-define': 'off',
+ '@typescript-eslint/no-use-before-define': 'off',
+ '@typescript-eslint/ban-ts-comment': 'off',
+ '@typescript-eslint/ban-types': 'off',
+ '@typescript-eslint/no-non-null-assertion': 'off',
+ '@typescript-eslint/explicit-module-boundary-types': 'off',
+ '@typescript-eslint/no-unused-vars': [
+ 'error',
+ {
+ argsIgnorePattern: '^_',
+ varsIgnorePattern: '^_',
+ },
+ ],
+ 'no-unused-vars': [
+ 'error',
+ {
+ argsIgnorePattern: '^_',
+ varsIgnorePattern: '^_',
+ },
+ ],
+ 'space-before-function-paren': 'off',
+
+ 'vue/attributes-order': 'off',
+ 'vue/one-component-per-file': 'off',
+ 'vue/html-closing-bracket-newline': 'off',
+ 'vue/max-attributes-per-line': 'off',
+ 'vue/multiline-html-element-content-newline': 'off',
+ 'vue/singleline-html-element-content-newline': 'off',
+ 'vue/attribute-hyphenation': 'off',
+ 'vue/require-default-prop': 'off',
+ 'vue/require-explicit-emits': 'off',
+ 'vue/html-self-closing': [
+ 'error',
+ {
+ html: {
+ void: 'always',
+ normal: 'never',
+ component: 'always',
+ },
+ svg: 'always',
+ math: 'always',
+ },
+ ],
+ 'vue/multi-word-component-names': 'off',
+ },
+};
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..f797607
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,25 @@
+# Logs
+logs
+*.log
+npm-debug.log*
+yarn-debug.log*
+yarn-error.log*
+pnpm-debug.log*
+lerna-debug.log*
+
+node_modules
+dist
+dist-ssr
+*.local
+.eslintcache
+
+# Editor directories and files
+.vscode/*
+!.vscode/extensions.json
+.idea
+.DS_Store
+*.suo
+*.ntvs*
+*.njsproj
+*.sln
+*.sw?
diff --git a/.prettierignore b/.prettierignore
new file mode 100644
index 0000000..f7e39e6
--- /dev/null
+++ b/.prettierignore
@@ -0,0 +1,9 @@
+/dist/*
+.local
+.output.js
+/node_modules/**
+
+**/*.svg
+**/*.sh
+
+/public/*
diff --git a/.stylelintignore b/.stylelintignore
new file mode 100644
index 0000000..0517076
--- /dev/null
+++ b/.stylelintignore
@@ -0,0 +1,3 @@
+/dist/*
+/public/*
+public/*
diff --git a/.vscode/extensions.json b/.vscode/extensions.json
new file mode 100644
index 0000000..3dc5b08
--- /dev/null
+++ b/.vscode/extensions.json
@@ -0,0 +1,3 @@
+{
+ "recommendations": ["johnsoncodehk.volar"]
+}
diff --git a/License b/License
new file mode 100644
index 0000000..486a164
--- /dev/null
+++ b/License
@@ -0,0 +1,21 @@
+MIT License
+
+Copyright (c) 2020-present, Fast-vue3
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
\ No newline at end of file
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..f5342b7
--- /dev/null
+++ b/README.md
@@ -0,0 +1,11 @@
+# Vue 3 + Typescript + Vite
+
+This template should help get you started developing with Vue 3 and Typescript in Vite. The template uses Vue 3 `
+
+