mirror of
https://github.com/pure-admin/vue-pure-admin.git
synced 2025-11-21 14:13:36 +08:00
vue3.0 init
This commit is contained in:
15
frontend/vue-ts/src/views/home.vue
Normal file
15
frontend/vue-ts/src/views/home.vue
Normal file
@@ -0,0 +1,15 @@
|
||||
<template>
|
||||
<div>{{ text }}</div>
|
||||
</template>
|
||||
|
||||
<script lang="ts">
|
||||
import { ref } from "vue"
|
||||
export default {
|
||||
setup() {
|
||||
const text = ref("vue-ts")
|
||||
return {
|
||||
text
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
Reference in New Issue
Block a user