天波用户运营管理后台系统
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

14 lines
228B

  1. import waves from './waves'
  2. const install = function(Vue) {
  3. Vue.directive('waves', waves)
  4. }
  5. if (window.Vue) {
  6. window.waves = waves
  7. Vue.use(install); // eslint-disable-line
  8. }
  9. waves.install = install
  10. export default waves