22 lines
292 B
Vue
22 lines
292 B
Vue
<template>
|
|
<view class="error">
|
|
请在微信中打开...
|
|
</view>
|
|
</template>
|
|
|
|
<script setup>
|
|
|
|
</script>
|
|
|
|
<style lang="less" scoped>
|
|
.error{
|
|
width: 100%;
|
|
height: 100vh;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
font-size: 30rpx;
|
|
color: #999;
|
|
}
|
|
</style>
|