Frontend
Vue SFC|在SFC內寫一個元件
在SFC內寫一個元件 相關筆記與範例整理。
This article isn't available in this language yet — showing the original below.
<script setup lang="tsx">const Foo = (props: {msg: string }) => { return <div>{props.msg}</div>}</script><template> <Foo :msg="" /></template>