天波用户运营管理后台系统
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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