19 lines
299 B
Vue
19 lines
299 B
Vue
<template>
|
|
<view class="content">
|
|
<view class="text-center padding-top-xl">
|
|
<text class="text-xl text-gray">一张图功能开发中...</text>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script setup>
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.content {
|
|
min-height: 100vh;
|
|
background: #EBF2FC;
|
|
}
|
|
</style>
|
|
|