chore(projects): 增加unocss,添加全局样式表

This commit is contained in:
‘chen.home’ 2022-08-06 14:12:03 +08:00
parent a88079efbb
commit 0fc4f736ca
12 changed files with 34 additions and 5 deletions

View File

@ -43,12 +43,15 @@ pnpm dev
pnpm build
```
- cz插件提交git
Git 提交规范
项目已经内置angular提交规范通过git cz 代替git commit 命令即可。
```bash
pnpm cz
or
pnpm commit
```
## 素材来源
[iconfont-阿里巴巴矢量图标库](https://www.iconfont.cn/collections/detail?spm=a313x.7781069.1998910419.d9df05512&cid=39973)

View File

@ -1,6 +1,7 @@
import vue from './vue';
import compress from './compress';
import html from './html';
import unocss from './unocss';
/**
* @description: vite插件配置
@ -8,7 +9,7 @@ import html from './html';
* @return {*}
*/
export function setVitePlugins(env) {
const plugins = [...vue, html(env)];
const plugins = [...vue, html(env), unocss];
if (env.VITE_COMPRESS_OPEN === 'Y') {
plugins.push(compress(env));

3
build/plugins/unocss.ts Normal file
View File

@ -0,0 +1,3 @@
import Unocss from 'unocss/vite'; // https://github.com/unocss/unocss
export default Unocss();

View File

@ -50,6 +50,7 @@
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"typescript": "^4.6.4",
"unocss": "^0.45.5",
"vite": "^3.0.0",
"vite-plugin-compression": "^0.5.1",
"vite-plugin-html": "^3.2.0",

View File

@ -1,8 +1,11 @@
import { createApp } from 'vue';
import App from './App.vue';
import { setupRouter } from './router';
import { setupAssets } from './plugins';
async function setupApp() {
// 引入静态资源
setupAssets();
// 创建vue实例
const app = createApp(App);
// 安装router

6
src/plugins/assets.ts Normal file
View File

@ -0,0 +1,6 @@
// 全局引入的静态资源
import 'uno.css';
export default function setupAssets() {
//
}

3
src/plugins/index.ts Normal file
View File

@ -0,0 +1,3 @@
import setupAssets from './assets';
export { setupAssets };

View File

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

0
src/styles/css/index.css Normal file
View File

View File

View File

@ -1,7 +1,9 @@
<template>
<div style="text-align: center">
<h1>{{ msg }}</h1>
<span>Already configured: vue3vite3eslintprettiertstsxconventionalhusklint-stagedvue-router</span>
<span>
Already configured: vue3vite3unocsseslintprettiertstsxconventionalhusklint-stagedvue-router
</span>
<div><router-link to="/">Go to layout</router-link></div>
</div>
</template>

View File

@ -1,5 +1,6 @@
<template>
<div style="text-align: center">I prove that you have made the jump test1.</div>
<div class="c-yellow">Uno css</div>
</template>
<script setup lang="ts">