index.vue 485 Bytes
<!--
 * @Date: 2023-12-13 11:13:13
 * @LastEditors: hookehuyr hookehuyr@gmail.com
 * @LastEditTime: 2023-12-15 10:42:58
 * @FilePath: /meihuaApp/src/pages/my/index.vue
 * @Description: 文件描述
-->
<template>
  <div>
    <nav-bar activated="my" />
  </div>
</template>

<script setup>
import Taro from '@tarojs/taro'
import { ref } from "vue";
import navBar from '@/components/navBar.vue'
</script>

<script>
import "./index.less";

export default {
  name: "myPage",
};
</script>