26 lines
455 B
Vue
26 lines
455 B
Vue
<!--
|
|
* @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>
|