20 lines
202 B
Vue
20 lines
202 B
Vue
<template>
|
|
<view>
|
|
</view>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { onShow,onLoad } from "@dcloudio/uni-app";
|
|
onLoad(() => {
|
|
|
|
});
|
|
|
|
onShow(() => {
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
</style>
|