10 lines
121 B
Vue
10 lines
121 B
Vue
<template>
|
|
<div>Hello {{ msg }} !</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
defineProps({
|
|
msg: String
|
|
})
|
|
</script>
|