问题描述
提示:这里描述具体问题:
在quasar官网上q-select api显示如下:
在quasar中如何调用呢?
与vue2.0的调用方式不一样,还有vue3.0和vue2.0在q-select中的函数有可能发生变化。
@update:model-value -> function(value)
Description
Emitted when the component needs to change the model; Is also used by v-model
Parameters
value : Any - required!
Description
New model value
正常使用
<q-select
filled
bg-color="grey"
style="width: 540px; hight: 180px"
v-model="item"
:options="itemList"
label="info"
@update="getinfo"
@add="getinfo"
@click="getinfo(value)"
/>
以上的方式都不行。
原因分析:
提示:这里填写问题的分析:在正常的quasar项目中使用是没有效果的。没有安照quasar约定的方式进行,所以不能使用。
解决方案:
提示:这里填写该问题的具体解决方案:按照quasar描述进行使用。
<q-select
filled
bg-color="blue"
style="width: 980px; hight: 540px"
v-model="item"
:options="itemList"
label="info"
@update:model-value="getinfo"
/>
欢迎评论:
提示:欢迎大家在评论区讨论相关问题。
可以关注博主,我会持续更新工作中遇到的技术小砖头,供大家使用。
也可以在评论区告知好的小砖头或技术,我会收录。
还可以指出本博文错误,希望大家不吝赐教。