mirror of https://github.com/dunwu/db-tutorial.git
8 lines
184 B
JavaScript
8 lines
184 B
JavaScript
|
export default ({ Vue, isServer }) => {
|
||
|
if (!isServer) {
|
||
|
import('vue-toasted' /* webpackChunkName: "notification" */).then(module => {
|
||
|
Vue.use(module.default)
|
||
|
})
|
||
|
}
|
||
|
}
|