index.vue
497 Bytes
<!--
* @Date: 2022-09-19 14:11:06
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2025-07-01 10:56:38
* @FilePath: /myApp/src/pages/demo/index.vue
* @Description: demo 页面(开发调试用)
-->
<template>
<div class="red">{{ str }}</div>
</template>
<script setup>
import '@tarojs/taro/html.css'
import { ref } from 'vue'
import './index.less'
// 定义响应式数据
const str = ref('Demo页面')
</script>
<script>
export default {
name: 'demoPage'
}
</script>