Laravel Vue Textarea内容未显示

时间:2019-01-14 21:35:53

标签: laravel vue.js

我有此代码:

 <textarea id="description" class="form-control{{ $errors->has('description') ? ' is-invalid' : '' }}" name="description" rows="3" :maxlength="max" v-model="text" required>{{ $post->description ?? old('description') }}</textarea>

如果存在:$post->description文本区域中的文本未显示。为什么?当我删除v-model="text"时,一切正常。

在App.js中:

const app = new Vue({
el: '#app',
data: {
    max: 137,
    text: '',
    textIm: '',
}
});

0 个答案:

没有答案