mirror of
https://github.com/tenrok/vue-context.git
synced 2026-05-28 18:14:03 +03:00
24 lines
479 B
JavaScript
24 lines
479 B
JavaScript
import Vue from 'vue';
|
|
import Advanced1 from './advanced-1';
|
|
import Advanced2 from './advanced-2';
|
|
import NestedMenus from './nested-menus';
|
|
|
|
// Need a separate vue app for each of these so we can render the markdown properly.
|
|
new Vue({
|
|
components: {
|
|
Advanced1,
|
|
},
|
|
}).$mount('#advanced-1-app');
|
|
|
|
new Vue({
|
|
components: {
|
|
Advanced2,
|
|
},
|
|
}).$mount('#advanced-2-app');
|
|
|
|
new Vue({
|
|
components: {
|
|
NestedMenus,
|
|
},
|
|
}).$mount('#nested-app');
|