🚀 Add Example && Upgrade Eslint

This commit is contained in:
pdsuwwz
2020-10-06 17:03:32 +08:00
parent 26aa82cd34
commit 7274671610
13 changed files with 2154 additions and 298 deletions

12
example/main.js Normal file
View File

@@ -0,0 +1,12 @@
import Vue from 'vue'
import router from './router.js'
import HocElementAffix from 'source/main.js'
import App from './App.vue'
Vue.use(HocElementAffix)
new Vue({
router,
render: h => h(App)
}).$mount('#app')