1
我有有輸入和內部各一對夫婦譜曲的還有另外一個比較錯誤形式,所以我有
// input comp
<template></template>
<script>
import Store from '../../store'
export default {
props:['errors'],
data() {
return {
input: ''
}
},
computed: {
showError() {
if (this.errors && !this.input) {
return true;
}
}
}
}
</script>
// error comp
<template>
<span class="help-block">
<strong v-for="error in errors">
{{ error }}
</strong>
</span>
</template>
<script>
export default {
props: ['errors'],
watch: {
errors: (val) => {
this.$emit('newError')
}
},
}
</script>
// display the error
<form-errors :errors="errors" v-if="showError" v-on:newError="showError = !showError"></form-errors>
等什麼是後是
得到
error watch
實際上作爲工作至今我不知道如何掛鉤到組件更新如何重寫的計算的道具
你能爲此創建一個小提琴嗎? – Saurabh
上午使用模板的刀片和3與兒童和父母之間的數據存儲comps,所以使一個小提琴不會很容易,但你可以問我什麼是不明確的你。 – ctf0