2
0
mirror of https://github.com/tenrok/vue-context.git synced 2026-05-28 04:54:04 +03:00
Files
rawilk 389f0c9d7d wip
2020-08-30 21:41:51 -05:00

17 lines
386 B
JavaScript

import Vue from 'vue';
import CloseOnClick from './close-on-click';
import CloseOnScroll from './close-on-scroll';
// Need a separate vue app for each of these so we can render the markdown properly.
new Vue({
components: {
CloseOnClick,
},
}).$mount('#close-on-click-app');
new Vue({
components: {
CloseOnScroll,
},
}).$mount('#close-on-scroll-app');