mirror of
				https://github.com/scinote-eln/scinote-web.git
				synced 2025-10-31 00:19:20 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
	
		
			533 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
	
		
			533 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| import { PerfectScrollbar } from 'vue3-perfect-scrollbar';
 | |
| import { createApp } from 'vue/dist/vue.esm-bundler.js';
 | |
| import 'vue3-perfect-scrollbar/style.css';
 | |
| import ShareLinkContainer from '../../vue/shareable_links/container.vue';
 | |
| import { mountWithTurbolinks } from './helpers/turbolinks.js';
 | |
| 
 | |
| const app = createApp({});
 | |
| app.component('ShareTaskContainer', ShareLinkContainer);
 | |
| app.component('PerfectScrollbar', PerfectScrollbar);
 | |
| app.config.globalProperties.i18n = window.I18n;
 | |
| mountWithTurbolinks(app, '#share-task-container');
 |