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