prototype.js 275 B

123456789101112
  1. /**
  2. * @全局挂载
  3. * @API 全局事件
  4. */
  5. import common from '../utils/common.js'
  6. import Aliplayer from 'aliplayer';
  7. export default {
  8. install(app) {
  9. app.config.globalProperties.$Common = common
  10. app.config.globalProperties.Aliplayer = Aliplayer
  11. }
  12. }