mirror of
https://github.com/KevinMidboe/vue-js-modal.git
synced 2025-10-29 18:00:20 +00:00
12 lines
179 B
JavaScript
12 lines
179 B
JavaScript
import Vue from 'vue';
|
|
import App from './App';
|
|
import VueModal from '../src/index';
|
|
|
|
Vue.use(VueModal);
|
|
|
|
new Vue({
|
|
el: '#app',
|
|
template: '<App/>',
|
|
components: { App },
|
|
});
|