我需要将 v-model 放入我的类别和子类别选择表单中。我很困惑
我的观点
<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。
谢谢