perf(projects): 加naiveUI本地化、自动导入组件

This commit is contained in:
‘chen.home’ 2022-08-06 17:49:26 +08:00
parent 0e79a82b43
commit 6d8fda1f4f
9 changed files with 46 additions and 17 deletions

View File

@ -30,6 +30,7 @@ module.exports = {
rules: { rules: {
// TSESLint docs https://typescript-eslint.io/rules/ // TSESLint docs https://typescript-eslint.io/rules/
'no-var': 'error', // 禁止使用var 'no-var': 'error', // 禁止使用var
'no-unused-vars': 'off', // 允许声明不使用的值
'no-console': 'warn', // 禁止出现console 'no-console': 'warn', // 禁止出现console
'no-debugger': 'off', // 关闭debugger警告 'no-debugger': 'off', // 关闭debugger警告
'vue/multi-word-component-names': 0, // 关闭文件名多单词 'vue/multi-word-component-names': 0, // 关闭文件名多单词

2
.gitignore vendored
View File

@ -28,4 +28,4 @@ stats.html
pnpm-lock.yaml pnpm-lock.yaml
package-lock.json package-lock.json
yarn.lock yarn.lock
/src/types/components.d.ts

View File

@ -3,6 +3,7 @@ import compress from './compress';
import html from './html'; import html from './html';
import unocss from './unocss'; import unocss from './unocss';
import visualizer from './visualizer'; import visualizer from './visualizer';
import unplugin from './unplugin';
/** /**
* @description: vite插件配置 * @description: vite插件配置
@ -10,7 +11,7 @@ import visualizer from './visualizer';
* @return {*} * @return {*}
*/ */
export function setVitePlugins(env) { export function setVitePlugins(env) {
const plugins = [...vue, html(env), unocss]; const plugins = [...vue, html(env), unocss, ...unplugin];
// 是否压缩 // 是否压缩
if (env.VITE_COMPRESS_OPEN === 'Y') { if (env.VITE_COMPRESS_OPEN === 'Y') {
plugins.push(compress(env)); plugins.push(compress(env));

View File

@ -0,0 +1,9 @@
import Components from 'unplugin-vue-components/vite';
import { NaiveUiResolver } from 'unplugin-vue-components/resolvers';
export default [
Components({
dts: 'src/types/components.d.ts',
resolvers: [NaiveUiResolver()],
}),
];

View File

@ -53,6 +53,7 @@
"rollup-plugin-visualizer": "^5.7.1", "rollup-plugin-visualizer": "^5.7.1",
"typescript": "^4.6.4", "typescript": "^4.6.4",
"unocss": "^0.45.5", "unocss": "^0.45.5",
"unplugin-vue-components": "^0.22.0",
"vite": "^3.0.0", "vite": "^3.0.0",
"vite-plugin-compression": "^0.5.1", "vite-plugin-compression": "^0.5.1",
"vite-plugin-html": "^3.2.0", "vite-plugin-html": "^3.2.0",

View File

@ -1,7 +1,24 @@
<script setup lang="ts"></script> <script setup lang="ts">
// import { darkTheme } from 'naive-ui';
import { zhCN, dateZhCN, GlobalThemeOverrides } from 'naive-ui';
const locale = zhCN;
const dateLocale = dateZhCN;
const themeOverrides: GlobalThemeOverrides = {
common: {
primaryColor: '#316C72FF',
primaryColorHover: '#316C72E3',
primaryColorPressed: '#2B4C59FF',
primaryColorSuppl: '#316C7263',
},
};
</script>
<template> <template>
<router-view /> <n-config-provider :theme="null" :locale="locale" :date-locale="dateLocale" :theme-overrides="themeOverrides">
<router-view />
</n-config-provider>
</template> </template>
<style scoped></style> <style scoped></style>

View File

@ -1,14 +1,8 @@
import type { Router } from 'vue-router'; import type { Router } from 'vue-router';
export function setupRouterGuard(router: Router) { export function setupRouterGuard(router: Router) {
router.beforeEach((to, from, next) => { router.beforeEach((_to, _from, next) => {
// console.log('%c [to]-24', 'font-size:13px; background:pink; color:#bf2c9f;', to);
next(); next();
}); });
router.afterEach((to) => { // router.afterEach((_to) => {});
// 设置document title
// useTitle(to.meta.title);
// 结束 loadingBar
// window.$loadingBar?.finish();
});
} }

View File

@ -1,10 +1,16 @@
<template> <template>
<div text-center c-blue>I prove that you have made the jump test1.</div> <div text-center c-blue>I prove that you have made the jump test1.</div>
<n-space m-50>
<n-button>Default</n-button>
<n-button type="tertiary">Tertiary</n-button>
<n-button type="primary">Primary</n-button>
<n-button type="info">Info</n-button>
<n-button type="success">Success</n-button>
<n-button type="warning">Warning</n-button>
<n-button type="error">Error</n-button>
</n-space>
</template> </template>
<script setup lang="ts"> <script setup lang="ts"></script>
import { useRouter } from 'vue-router';
const router = useRouter();
</script>
<style scoped></style> <style scoped></style>

View File

@ -4,7 +4,7 @@ import { resolve } from 'path';
// 当前执行node命令时文件夹的地址工作目录 // 当前执行node命令时文件夹的地址工作目录
const rootPath: string = resolve(process.cwd()); const rootPath: string = resolve(process.cwd());
const srcPath: string = `${rootPath}/src`; const srcPath = `${rootPath}/src`;
// https://vitejs.dev/config/ // https://vitejs.dev/config/
export default defineConfig(({ command, mode }: ConfigEnv) => { export default defineConfig(({ command, mode }: ConfigEnv) => {