参考官网:https://doc.vux.li/zh-CN/comp...
使用vux中的toast组件
但是在main.js中写:
import {ToastPlugin} from 'vux'Vue.use(ToastPlugin, {position: 'bottom'})
引入toast组件,并设置提示信息位置在底部。
但是在组件中写:
this.$vux.toast.text('hello')
提示信息并没有在底部显示,而是同“default”,在鼠标点击处附近显示。
写成下面的代码,提示信息才会在底部显示。
this.$vux.toast.text('hello', "bottom")
请问为什么在main.js中配置的position不起作用呢?求教,谢谢
相关分类