index.vue
447 Bytes
<!--
* @Date: 2022-09-21 14:51:44
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2022-09-21 16:13:17
* @FilePath: /swx/src/pages/my/index.vue
* @Description: 文件描述
-->
<template>
<view>my</view>
<navbar activated="my" />
</template>
<script setup>
import { ref } from "vue";
import navbar from '@/components/navbar.vue'
</script>
<script>
import "./index.less";
export default {
name: "myPage",
};
</script>