2
0
mirror of https://github.com/tenrok/vue-context.git synced 2026-05-28 18:14:03 +03:00
Files
vue-context/docs-build/js/advanced/index.js
T
rawilk b7760ae2d5 wip
2020-08-30 21:20:31 -05:00

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');