我需要在我的类别和子类别选择表单中放置v模型。我很困惑
我的观点
<div class="form-group">
{!! Form::label('account_id', 'Parent Category:')!!}
{!! Form::select('account_id', $allCategories, ['placeholder' => 'Choose Category'])!!}
</div>
<div class="form-group">
{!! Form::label('children', 'Child category:')!!}
{!! Form::select('children', [], null, ['placeholder' => 'Choose child category'])!!}
</div>
也 如果选择了子类别中的(v-model),则不要考虑类别中的v-model。
谢谢