mirror of
				https://github.com/scinote-eln/scinote-web.git
				synced 2025-10-31 08:26:31 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
	
		
			475 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
	
		
			475 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| import { createApp } from 'vue/dist/vue.esm-bundler.js';
 | |
| import { PerfectScrollbar } from 'vue3-perfect-scrollbar';
 | |
| import RepositoriesTable from '../../vue/repositories/table.vue';
 | |
| import { mountWithTurbolinks } from './helpers/turbolinks.js';
 | |
| 
 | |
| const app = createApp();
 | |
| app.component('RepositoriesTable', RepositoriesTable);
 | |
| app.config.globalProperties.i18n = window.I18n;
 | |
| app.component('PerfectScrollbar', PerfectScrollbar);
 | |
| mountWithTurbolinks(app, '#repositoriesTable');
 |