Files
2018-10-07 17:07:35 +08:00

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)
})
}
}