Files
device-voice-h5/pages/error/error.vue
2026-04-11 14:42:14 +08:00

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>