<script setup lang="ts">
	// ts写法
	const props = withDefaults(defineProps<{
		title?: string // 是否必传
	}>(),{
		title:'默认值'
	})
	// 非ts写法
	const props = defineProps({
		title: {
			type: String,
			default: '默认值',
			required: false // 是否必传
		}
  	})
  	// 使用 props
  	const useProps = () => {
		console.log(props.title) // 默认值
	}
</script>
Logo

旨在为数千万中国开发者提供一个无缝且高效的云端环境,以支持学习、使用和贡献开源项目。

更多推荐