如何禁用在中关于 VueJS 材料
当我单击
组件时,会显示
。
当我单击
的外部区域时,
组件将关闭。
我想在单击某个按钮时关闭
组件。
如何添加自定义事件来关闭
组件?
这是select
组件的文档链接。
Vue Material - Select
这是一个模板。
<md-field>
<label for="movie">Movie</label>
<md-select v-model="movie" name="movie" id="movie">
<md-option value="fight-club">Fight Club</md-option>
<md-option value="godfather">Godfather</md-option>
<md-option value="godfather-ii">Godfather II</md-option>
</md-select>
</md-field>
<md-select>
is shown when I click <md-field>
component.
And <md-select>
component is turn off when I click outside area of <md-field>
.
I want to turn off <md-select>
component when I click some button.
How can I add custom event for turn off <md-select>
component?
This is a document link for select
component.
Vue Material - Select
And this is a template.
<md-field>
<label for="movie">Movie</label>
<md-select v-model="movie" name="movie" id="movie">
<md-option value="fight-club">Fight Club</md-option>
<md-option value="godfather">Godfather</md-option>
<md-option value="godfather-ii">Godfather II</md-option>
</md-select>
</md-field>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以添加一个按钮并添加单击事件
然后您可以更改组件的变量让我们将其称为 isDisabled
或者您可以使用它的 ref 像
然后执行您想要的操作。
You can add a button and add click event
Then you can change your component's variable let's call it isDisabled
or you can use its ref like
and then do which action you want.