vue3.0 init

This commit is contained in:
xiaoxian521
2020-11-16 22:44:09 +08:00
parent 9bdbf56ec0
commit a6d76a34fa
28 changed files with 17480 additions and 14 deletions

View 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>