forked from shentao/vue-multiselect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.js
58 lines (54 loc) · 1.32 KB
/
main.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
import {createApp, h} from 'vue'
import Multiselect from '../src/index'
import App from './src/App.vue'
import {createStore} from 'vuex'
import { setCDN, getHighlighter } from 'shiki'
setCDN('shiki/')
import './docs.scss'
const store = createStore({
state () {
return {
value: 'Vuex',
options: ['Vuex', 'Vue', 'Vuelidate', 'Vue-Multiselect', 'Vue-Router']
}
},
mutations: {
updateValue (state, value) {
state.value = value
}
},
actions: {
updateValueAction ({ commit }, value) {
commit('updateValue', value)
}
}
})
// import 'highlight.js/styles/intellij-light.css'
// import hljsVuePlugin from '@highlightjs/vue-plugin'
const app = createApp({
render: () => h(App),
data () {
return {
markupLangs: ['html'],
markupLanguage: 'html',
isNavSticky: false,
currentPosition: ''
}
},
methods: {
selectLanguage (lang) {
this.markupLanguage = lang
},
onTagging (newTag) {
this.source.push({ name: newTag, language: newTag })
this.value.push({ name: newTag, language: newTag })
}
}
}).component('multiselect', Multiselect).use(store)
getHighlighter({
theme: 'github-light',
langs: ['javascript', 'html', 'bash']
}).then(highlighter => {
app.config.globalProperties.highlighter = highlighter
app.mount('#app')
})