天波用户运营管理后台系统
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

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