naive-ui/packages/common/Notification/index.js

10 lines
252 B
JavaScript
Raw Normal View History

2019-06-20 19:10:53 +08:00
import Notification from './src/main.js'
2019-12-08 20:47:14 +08:00
import { install } from '../../utils/installThemeAwarableProperty'
2019-06-20 19:10:53 +08:00
2019-10-25 17:53:59 +08:00
Notification.install = function (Vue) {
Notification.Vue = Vue
2019-12-08 20:47:14 +08:00
install(Vue, Notification, '$NNotification')
2019-06-20 19:10:53 +08:00
}
export default Notification