13 lines
148 B
Vue
13 lines
148 B
Vue
|
|
<template>
|
||
|
|
<view class="content"> 我的 </view>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script setup>
|
||
|
|
import { ref } from 'vue'
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<style>
|
||
|
|
.content {
|
||
|
|
}
|
||
|
|
</style>
|