27 lines
352 B
Plaintext
27 lines
352 B
Plaintext
<template>
|
|
<view>
|
|
</view>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { ref } from 'vue';
|
|
import { onShow, onLoad } from '@dcloudio/uni-app';
|
|
import { NvpAgentService, Service } from '@/Service/Nvp/NvpAgentService';
|
|
|
|
|
|
|
|
onShow(() => {
|
|
|
|
})
|
|
|
|
onLoad(() => {
|
|
|
|
|
|
})
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
page {
|
|
background-color: #fdfdfd;
|
|
}
|
|
</style> |