Skip to content

booleanProp

稳定性: 实验性 ⚠️ 实验性功能,风险自负

<Comp checked /> 转换为 <Comp :checked="true" />

FeaturesSupported
Vue 3
Nuxt 3
Vue 2
Volar Plugin

基本用法

vue
<template>
  <Comp checked />
</template>
vue
<script setup lang="ts">
// Comp.vue
defineProps<{
  checked?: any
}>()
</script>