【发布时间】:2021-02-10 00:59:41
【问题描述】:
我正在尝试添加以下 css,但它不起作用。我想我会按照文档进行。
https://www.npmjs.com/package/vue-toasted
以下方法均无效。
正在使用的函数@click 的 div。
showToast(){
this.$toasted.show('Email Sent!',{
position: "top-right",
duration : 5000,
class: 'toasting'
});
或
showToast(){
this.$toasted.show('Email Sent!',{
position: "top-right",
duration : 5000,
className: ['toasting']
});
风格
.toasting {
color: yellow;
background-color: pink;
}
【问题讨论】:
-
你
Vue.use(Toasted)了吗?
标签: javascript vue.js vue-toasted