2024-05-08 13:43:24 +08:00
|
|
|
<template>
|
2024-05-09 14:55:40 +08:00
|
|
|
<h1>vite-pinia 模板</h1>
|
2024-05-08 13:43:24 +08:00
|
|
|
<h1>成功</h1>
|
|
|
|
<ul>
|
|
|
|
<li v-for="(route, index) in pageRoutes" :key="index">
|
|
|
|
<RouterLink :to="route.path">{{ `${route.path}【${String(route.name)}】` }}</RouterLink>
|
|
|
|
</li>
|
|
|
|
</ul>
|
2024-05-08 16:02:48 +08:00
|
|
|
|
2024-05-27 00:02:14 +08:00
|
|
|
<Test />
|
2024-05-08 16:02:48 +08:00
|
|
|
<RouterView />
|
2024-05-08 13:43:24 +08:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts" setup>
|
2024-05-27 00:02:14 +08:00
|
|
|
import Test from '@/views/test-tsx/index.tsx';
|
2024-05-08 13:43:24 +08:00
|
|
|
import { pageRoutes } from '@/router/module/pageRoutes';
|
|
|
|
</script>
|
2024-05-27 00:02:14 +08:00
|
|
|
<style lang="scss" scoped>
|
2024-05-08 13:43:24 +08:00
|
|
|
ul {
|
|
|
|
padding-left: 50px;
|
2024-05-27 00:02:14 +08:00
|
|
|
|
2024-05-08 13:43:24 +08:00
|
|
|
li {
|
|
|
|
list-style: circle !important;
|
|
|
|
}
|
2024-05-27 00:02:14 +08:00
|
|
|
|
2024-05-08 13:43:24 +08:00
|
|
|
a {
|
|
|
|
color: #8185a7;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|