Answer the question
In order to leave comments, you need to log in
How to use computed with v-model?
Hello, I have an input with
v-model="value" //переменная привязки
:value="computedValue"
//default value Answer the question
In order to leave comments, you need to log in
What?
The default value in the conditional input:
https://sfc.vuejs.org/#eyJBcHAudnVlIjoiPHRlbXBsYXR...
<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>
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question