feat(ui): 采用 antdv 作为 ui

This commit is contained in:
BTMuli
2023-03-05 17:10:51 +08:00
parent c42ca01fa7
commit d1ddde8635
10 changed files with 1967 additions and 181 deletions

View File

@@ -7,7 +7,7 @@ Update: 2023-03-05
> 本文档 [`Front-matter`](https://github.com/BTMuli/Mucli#FrontMatter) 由 [MuCli](https://github.com/BTMuli/Mucli) 自动生成于`2023-03-05 14:41:55`
>
> 更新于 `2023-03-05 14:41:55`
> 更新于 `2023-03-05 17:10:10`
# Tauri.Genshin
@@ -19,7 +19,7 @@ Tauri 练手项目
- [Vue3](https://v3.cn.vuejs.org/)
- [Vite](https://cn.vitejs.dev/)
- [TypeScript](https://www.typescriptlang.org/)
- [Naive UI](https://www.naiveui.com/zh-CN/os-theme/dark)
- [Ant Design Vue](https://www.antdv.com/docs/vue/introduce-cn/)
## 开发

18
components.d.ts vendored Normal file
View File

@@ -0,0 +1,18 @@
/* eslint-disable */
/* prettier-ignore */
// @ts-nocheck
// Generated by unplugin-vue-components
// Read more: https://github.com/vuejs/core/pull/3399
import '@vue/runtime-core'
export {}
declare module '@vue/runtime-core' {
export interface GlobalComponents {
ALayout: typeof import('ant-design-vue/es')['Layout']
ALayoutContent: typeof import('ant-design-vue/es')['LayoutContent']
RouterLink: typeof import('vue-router')['RouterLink']
RouterView: typeof import('vue-router')['RouterView']
TSidebar: typeof import('./src/components/t-sidebar.vue')['default']
}
}

1900
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -31,6 +31,7 @@
"homepage": "https://github.com/BTMuli/Tauri.Genshin#readme",
"dependencies": {
"@tauri-apps/api": "^1.2.0",
"ant-design-vue": "^3.2.15",
"vue": "^3.2.45"
},
"devDependencies": {
@@ -39,6 +40,7 @@
"@vitejs/plugin-vue": "^4.0.0",
"prettier": "^2.8.4",
"typescript": "^4.6.4",
"unplugin-vue-components": "^0.24.0",
"vite": "^4.0.0",
"vue-router": "^4.1.6",
"vue-tsc": "^1.0.11"

View File

@@ -20,10 +20,7 @@
},
"bundle": {
"active": true,
"icon": [
"icons/icon.png",
"icons/icon.ico"
],
"icon": ["icons/icon.png", "icons/icon.ico"],
"identifier": "com.tauri.dev",
"targets": "all"
},

View File

@@ -1,48 +1,25 @@
<script setup lang="ts">
// This starter template is using Vue 3 <script setup> SFCs
// Check out https://vuejs.org/api/sfc-script-setup.html#script-setup
import Greet from "./components/Greet.vue";
</script>
<template>
<div class="container">
<h1>Welcome to Tauri!</h1>
<div class="row">
<a href="https://vitejs.dev" target="_blank">
<img src="/vite.svg" class="logo vite" alt="Vite logo" />
</a>
<a href="https://tauri.app" target="_blank">
<img src="/tauri.svg" class="logo tauri" alt="Tauri logo" />
</a>
<a href="https://vuejs.org/" target="_blank">
<img src="./assets/vue.svg" class="logo vue" alt="Vue logo" />
</a>
</div>
<p>Click on the Tauri, Vite, and Vue logos to learn more.</p>
<p>
Recommended IDE setup:
<a href="https://code.visualstudio.com/" target="_blank">VS Code</a>
+
<a href="https://github.com/johnsoncodehk/volar" target="_blank">Volar</a>
+
<a href="https://github.com/tauri-apps/tauri-vscode" target="_blank">Tauri</a>
+
<a href="https://github.com/rust-lang/rust-analyzer" target="_blank">rust-analyzer</a>
</p>
<Greet />
</div>
<a-layout style="min-height: 100vh">
<!-- 侧边栏 -->
<t-sidebar />
<!-- 内容区 -->
<a-layout-content class="container">
<!-- 路由组件 -->
<router-view></router-view>
</a-layout-content>
</a-layout>
</template>
<style scoped>
.logo.vite:hover {
filter: drop-shadow(0 0 2em #747bff);
}
<script lang="ts">
import { defineComponent } from "vue";
import TSidebar from "./components/t-sidebar.vue";
.logo.vue:hover {
filter: drop-shadow(0 0 2em #249b73);
}
</style>
export default defineComponent({
name: "App",
components: {
TSidebar,
},
});
</script>
<style></style>

View File

@@ -1,21 +0,0 @@
<script setup lang="ts">
import { ref } from "vue";
import { invoke } from "@tauri-apps/api/tauri";
const greetMsg = ref("");
const name = ref("");
async function greet() {
// Learn more about Tauri commands at https://tauri.app/v1/guides/features/command
greetMsg.value = await invoke("greet", { name: name.value });
}
</script>
<template>
<div class="card">
<input id="greet-input" v-model="name" placeholder="Enter a name..." />
<button type="button" @click="greet()">Greet</button>
</div>
<p>{{ greetMsg }}</p>
</template>

View File

@@ -0,0 +1,15 @@
<template>
<div>
<h1>侧边栏</h1>
</div>
</template>
<script lang="ts">
import { defineComponent } from "vue";
export default defineComponent({
name: "TSidebar",
});
</script>
<style lang="css"></style>

View File

@@ -1,109 +0,0 @@
:root {
font-family: Inter, Avenir, Helvetica, Arial, sans-serif;
font-size: 16px;
line-height: 24px;
font-weight: 400;
color: #0f0f0f;
background-color: #f6f6f6;
font-synthesis: none;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
-webkit-text-size-adjust: 100%;
}
.container {
margin: 0;
padding-top: 10vh;
display: flex;
flex-direction: column;
justify-content: center;
text-align: center;
}
.logo {
height: 6em;
padding: 1.5em;
will-change: filter;
transition: 0.75s;
}
.logo.tauri:hover {
filter: drop-shadow(0 0 2em #24c8db);
}
.row {
display: flex;
justify-content: center;
}
a {
font-weight: 500;
color: #646cff;
text-decoration: inherit;
}
a:hover {
color: #535bf2;
}
h1 {
text-align: center;
}
input,
button {
border-radius: 8px;
border: 1px solid transparent;
padding: 0.6em 1.2em;
font-size: 1em;
font-weight: 500;
font-family: inherit;
color: #0f0f0f;
background-color: #ffffff;
transition: border-color 0.25s;
box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
}
button {
cursor: pointer;
}
button:hover {
border-color: #396cd8;
}
button:active {
border-color: #396cd8;
background-color: #e8e8e8;
}
input,
button {
outline: none;
}
#greet-input {
margin-right: 5px;
}
@media (prefers-color-scheme: dark) {
:root {
color: #f6f6f6;
background-color: #2f2f2f;
}
a:hover {
color: #24c8db;
}
input,
button {
color: #ffffff;
background-color: #0f0f0f98;
}
button:active {
background-color: #0f0f0f69;
}
}

View File

@@ -1,9 +1,16 @@
import { defineConfig } from "vite";
import vue from "@vitejs/plugin-vue";
import Components from "unplugin-vue-components/vite";
import { AntDesignVueResolver } from "unplugin-vue-components/resolvers";
// https://vitejs.dev/config/
export default defineConfig({
plugins: [vue()],
plugins: [
vue(),
Components({
resolvers: [AntDesignVueResolver()],
}),
],
// Vite options tailored for Tauri development and only applied in `tauri dev` or `tauri build`
// prevent vite from obscuring rust errors