Skip to content

props

prop model === $props.model === props.model

基本使用

vue
<!-- script setup 中 -->
<script setup>
const props = defineProps(['modelValue']) // 不成文规定,一般取名为:props
</script>

<!-- template 中 -->
<template>
  <input type="text" :value="modelValue" />
  <input type="text" :value="props.modelValue" />
  <input type="text" :value="$props.modelValue" />
</template>

基于 MIT 许可发布