【发布时间】:2021-11-21 22:45:41
【问题描述】:
我已经在我的 Vue 应用程序(2.6 版)中安装了 vue-sweetalert2。我在main.js 中包含以下内容:
import VueSweetalert2 from 'vue-sweetalert2';
Vue.use(VueSweetalert2);
我有一个带有点击处理程序的简单按钮:
<button v-on:click="alertDisplay">Click me</button>
alertDisplay() {
this.$swal('Heading', 'this is a Heading', 'OK');
},
这按预期工作。单击按钮时,sweetAlert 模式显示,但它出现在页面的最左下角,没有任何样式。我环顾四周,但在 Vue 应用程序的上下文中找不到此问题的明确原因或解决方案。
非常感谢任何想法!
【问题讨论】:
-
导入'sweetalert2/dist/sweetalert2.min.css';
-
谢谢。我刚刚在阅读您的评论之前找到了该解决方案。
标签: css vue.js sweetalert2