Vue 中使用element-ui樣式無效

xiang1907發表於2020-05-07

1. Vue 中使用element-ui樣式無效

示例按需載入元件,引用button 後發現樣式無效,後經搜尋發現沒有引入樣式,加上即可

2. 點選校驗後報錯

需要安裝vue-notification

npm install --savevue-notification

並在main.js中引用元件

import Notifications from "vue-notification"

Vue.use(Notifications)

3. 點選按鈕不提示資訊

經搜尋發現 vue-notification 元件需要在.vue檔案中引用

在app.vue中 新增 <notifications />  提示框就出來了

 

 

相關文章