axios-miniprogram/example/src/pages/index/index.vue

17 lines
224 B
Vue
Raw Normal View History

2023-05-05 10:59:37 +08:00
<template>
<view class="index">
<text>{{ msg }}</text>
</view>
</template>
<script lang="ts" setup>
import { ref } from 'vue'
import './index.css'
const msg = ref('Hello world')
defineExpose({
msg,
})
</script>