mirror of
https://github.com/tenrok/vue-context.git
synced 2026-06-12 13:22:24 +03:00
17 lines
354 B
JavaScript
17 lines
354 B
JavaScript
import Vue from 'vue';
|
|
import Advanced1 from './advanced-1';
|
|
import Advanced2 from './advanced-2';
|
|
|
|
// 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');
|