feat: remove something file and update package

This commit is contained in:
guoqi.sun 2024-02-14 01:38:55 +08:00
parent 8dbb24835f
commit bd61a4ee9f
6 changed files with 751 additions and 913 deletions

View File

@ -13,23 +13,21 @@
"lint-staged": "lint-staged"
},
"dependencies": {
"ant-design-vue": "4.x",
"vue": "^3.4.0",
"vue-router": "4"
"vue": "^3.4.19"
},
"devDependencies": {
"@antfu/eslint-config": "^2.6.1",
"@antfu/eslint-config": "^2.6.4",
"@iconify-json/ant-design": "^1.1.15",
"@unocss/eslint-plugin": "^0.58.2",
"@vitejs/plugin-vue": "^5.0.0",
"@unocss/eslint-plugin": "^0.58.5",
"@vitejs/plugin-vue": "^5.0.4",
"eslint": "^8.56.0",
"eslint-plugin-format": "^0.1.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"sass": "^1.69.6",
"unocss": "^0.58.2",
"husky": "^9.0.10",
"lint-staged": "^15.2.2",
"sass": "^1.70.0",
"unocss": "^0.58.5",
"unplugin-vue-components": "^0.26.0",
"vite": "^5.0.10"
"vite": "^5.1.1"
},
"lint-staged": {
"*.{js,ts,vue,jsx,tsx}": [

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img"
class="iconify iconify--logos" width="37.07" height="36" preserveAspectRatio="xMidYMid meet" viewBox="0 0 256 198">
<path fill="#41B883" d="M204.8 0H256L128 220.8L0 0h97.92L128 51.2L157.44 0h47.36Z"></path>
<path fill="#41B883" d="m0 0l128 220.8L256 0h-51.2L128 132.48L50.56 0H0Z"></path>
<path fill="#35495E" d="M50.56 0L128 133.12L204.8 0h-47.36L128 51.2L97.92 0H50.56Z"></path>
</svg>

Before

(image error) Size: 508 B

View File

@ -1,23 +0,0 @@
import { createRouter, createWebHistory } from 'vue-router'
import HomeView from '../views/HomeView.vue'
const router = createRouter({
history: createWebHistory(import.meta.env.BASE_URL),
routes: [
{
path: '/',
name: 'home',
component: HomeView,
},
{
path: '/about',
name: 'about',
// route level code-splitting
// this generates a separate chunk (About.[hash].js) for this route
// which is lazy-loaded when the route is visited.
component: () => import('../views/AboutView.vue'),
},
],
})
export default router

View File

@ -1,13 +0,0 @@
<script setup>
</script>
<template>
<main>
<div text-8>
This is an <span bg-green-500>About</span> page
</div>
</main>
</template>
<style lang="scss">
</style>

View File

@ -1,13 +0,0 @@
<script setup>
</script>
<template>
<main>
<div text-8>
This is an <span bg-green-500>Home</span> page
</div>
</main>
</template>
<style lang="scss">
</style>