HelloWorld.vue 207 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 <script lang="ts"> import { defineComponent } from 'vue' export default defineComponent({ props: { msg: String, }, setup(props) { }, }) </script> <template> <div>{{ msg }}</div> </template>