vue使用语法糖

This commit is contained in:
鼠子
2025-07-15 13:27:02 +08:00
parent 7b4cef5d35
commit a96efc9f07
12 changed files with 1030 additions and 1317 deletions

View File

@@ -1,3 +1,10 @@
<script setup>
/**
* 404错误页面组件
* 当用户访问不存在的路由时显示此页面
*/
</script>
<template>
<v-container class="fill-height">
<v-row align="center" justify="center">
@@ -26,14 +33,4 @@
</v-col>
</v-row>
</v-container>
</template>
<script>
/**
* 404错误页面组件
* 当用户访问不存在的路由时显示此页面
*/
export default {
name: 'NotFound'
}
</script>
</template>