mirror of
https://github.com/wahyd4/vuepress.git
synced 2026-08-10 22:06:22 +10:00
10 lines
209 B
JavaScript
10 lines
209 B
JavaScript
import './index.styl'
|
|
|
|
export default ({ Vue, isServer }) => {
|
|
if (!isServer) {
|
|
import('vue-toasted' /* webpackChunkName: "notification" */).then((module) => {
|
|
Vue.use(module.default)
|
|
})
|
|
}
|
|
}
|