天波用户运营管理后台系统
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

14 行
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