32 lines
874 B
JavaScript
32 lines
874 B
JavaScript
// The Vue build version to load with the `import` command
|
|
// (runtime-only or standalone) has been set in webpack.base.conf with an alias.
|
|
import Vue from 'vue'
|
|
import App from './App'
|
|
import router from './router'
|
|
import VueClipboard from 'vue-clipboard2'
|
|
import { setScale } from './assets/js/util'
|
|
|
|
Vue.config.productionTip = false
|
|
Vue.use(VueClipboard)
|
|
|
|
if ($(window).width() > 750) {
|
|
setScale(0.5)
|
|
}
|
|
|
|
window.jumpAnchor = (anchor) => {
|
|
if (!anchor || !document.getElementById(decodeURIComponent(anchor))) {
|
|
return
|
|
}
|
|
console.info(document.getElementById(decodeURIComponent(anchor)))
|
|
window.document.getElementById(decodeURIComponent(anchor)).scrollIntoView()
|
|
let hash = window.location.hash.replace(/\?.*/, '')
|
|
window.location.hash = `${hash}?anchor=${anchor}`
|
|
}
|
|
|
|
/* eslint-disable no-new */
|
|
new Vue({
|
|
el: '#app',
|
|
render: h => h(App),
|
|
router,
|
|
})
|