index.vue 487 Bytes
<!--
 * @Date: 2022-09-19 14:11:06
 * @LastEditors: hookehuyr hookehuyr@gmail.com
 * @LastEditTime: 2025-07-01 10:56:38
 * @FilePath: /lls_program/src/pages/demo/index.vue
 * @Description: 文件描述
-->
<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>