index.js 170 B

12345678
  1. import FixedNav from './fixednav.vue';
  2. import './fixednav.scss';
  3. FixedNav.install = function(Vue) {
  4. Vue.component(FixedNav.name, FixedNav);
  5. };
  6. export default FixedNav