index.vue 424 Bytes
<!--
 * @Date: 2022-09-19 14:11:06
 * @LastEditors: hookehuyr hookehuyr@gmail.com
 * @LastEditTime: 2022-09-30 10:00:57
 * @FilePath: /swx/src/pages/demo/index.vue
 * @Description: 文件描述
-->
<template>
  <div class="red">{{ str }}</div>
</template>

<script setup>
import Taro from '@tarojs/taro'
import { ref } from "vue";
</script>

<script>
import "./index.less";
export default {
  name: "demoPage",
};
</script>