v-model="value" //переменная привязки
:value="computedValue"
//дефолтное значение<template>
<label>
<input v-model="checked" type="checkbox">
Show input
</label>
<br>
<input v-if="checked" v-model="msg">
</template>
<script setup>
import {ref} from "vue";
const msg = ref("Hello World!");
const checked = ref(false);
</script>