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