做一些清理

This commit is contained in:
2022-12-14 18:36:32 +08:00
parent 7c9e1a682b
commit 4cb90a5925
51 changed files with 767 additions and 1088 deletions

View File

@@ -0,0 +1,25 @@
<!--
* @Author: Kane
* @Date: 2022-11-24 01:18:18
* @LastEditors: Kane
* @LastEditTime: 2022-11-24 01:21:20
* @FilePath: \hello-router\src\components\功能页面\demo-1.vue
* @Description:
*
* Copyright (c) ${2022} by Kane, All Rights Reserved.
-->
<template>
<h1>{{ title }}</h1>
</template>
<script>
export default {
name: "demo-1",
data() {
return {
title: "测试router-1",
};
},
};
</script>
<style scoped>
</style>