index.vue 483 Bytes
<!--
 * @Date: 2022-09-19 14:11:06
 * @LastEditors: hookehuyr hookehuyr@gmail.com
 * @LastEditTime: 2025-07-02 14:50:57
 * @FilePath: /jgdl/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>