vue3.2props设置默认值【defineProps】

<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>

你可能感兴趣的:(Vue,vue.js,前端,vue3,vue3.2)