菜单
×
×
正确!
练习填写缺失的代码,使输入与'inpText'数据属性双向绑定。 <template> <input type="text" @(17)> <p> {{ inpText }} </p> </template> <script> const app = Vue.createApp({ data() { return { inpText: 'Initial text' } } }) app.mount('#app') </script>
<template> <input type="text" v-model="inpText"> <p> {{ inpText }} </p> </template> <script> const app = Vue.createApp({ data() { return { inpText: 'Initial text' } } }) app.mount('#app') </script>
<template> <input type="text" v-model='inpText'> <p> {{ inpText }} </p> </template> <script> const app = Vue.createApp({ data() { return { inpText: 'Initial text' } } }) app.mount('#app') </script> 不正确点击这里重新尝试。 正确!下一题 ❯ |
这将重置所有 54 道练习的分数。
您确定要继续吗?