mirror of
https://github.com/pure-admin/vue-pure-admin.git
synced 2025-06-06 00:18:51 +08:00
15 lines
198 B
Vue
15 lines
198 B
Vue
<template>
|
|
<div>{{ text }}</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { ref } from "vue"
|
|
export default {
|
|
setup() {
|
|
const text = ref("vue-ts")
|
|
return {
|
|
text
|
|
}
|
|
}
|
|
}
|
|
</script> |