Files
hoc-element-affix/example/main.js

14 lines
325 B
JavaScript
Raw Normal View History

2022-01-01 16:14:33 +08:00
import { createApp } from 'vue'
2020-10-06 17:03:32 +08:00
import router from './router.js'
import App from './App.vue'
2022-01-01 16:14:33 +08:00
import HocElementAffix from 'root/lib/hoc-el-affix' // Switch to bundle lib
// import HocElementAffix from '@/main.js'
import 'example/styles/variables.scss'
2020-10-06 17:03:32 +08:00
2022-01-01 16:14:33 +08:00
createApp(App)
.use(router)
.use(HocElementAffix)
.mount('#app')