mirror of
				https://gitee.com/vant-contrib/vant.git
				synced 2025-10-31 19:42:07 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			309 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			309 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| import { createApp } from 'vue';
 | |
| import App from './App.vue';
 | |
| import DemoPlayground from './components/DemoPlayground.vue';
 | |
| import { router } from './router';
 | |
| 
 | |
| window.app = createApp(App)
 | |
|   .use(router)
 | |
|   .component(DemoPlayground.name, DemoPlayground);
 | |
| 
 | |
| setTimeout(() => {
 | |
|   window.app.mount('#app');
 | |
| }, 0);
 |