vue3 + TS + ElePlus 常见问题

问题1:语法糖中如何使用 props ???

使用 API defineProps

<script setup lang="ts">
const props = defineProps({
  foo: String
})
</script>

问题2: 父组件获取子组件实例(属性和方法)???

无法使用子组件内的方法,使用

你可能感兴趣的:(vue3,+,TS,vue)