mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-11-03 20:48:07 +00:00 
			
		
		
		
	Co-authored-by: Nithin David Thomas <webofnithin@gmail.com> Co-authored-by: Sojan Jose <sojan@pepalo.com>
		
			
				
	
	
		
			25 lines
		
	
	
		
			576 B
		
	
	
	
		
			JavaScript
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			576 B
		
	
	
	
		
			JavaScript
		
	
	
		
			Executable File
		
	
	
	
	
import Vue from 'vue';
 | 
						|
import Router from 'vue-router';
 | 
						|
import Home from './views/Home.vue';
 | 
						|
 | 
						|
Vue.use(Router);
 | 
						|
 | 
						|
export default new Router({
 | 
						|
  routes: [
 | 
						|
    {
 | 
						|
      path: '/',
 | 
						|
      name: 'home',
 | 
						|
      component: Home,
 | 
						|
    },
 | 
						|
    // {
 | 
						|
    //   path: '/about',
 | 
						|
    //   name: 'about',
 | 
						|
    //   // route level code-splitting
 | 
						|
    //   // this generates a separate chunk (about.[hash].js) for this route
 | 
						|
    //   // which is lazy-loaded when the route is visited.
 | 
						|
    //   component: () =>
 | 
						|
    //     import(/* webpackChunkName: "about" */ './views/About.vue'),
 | 
						|
    // },
 | 
						|
  ],
 | 
						|
});
 |