Repo for the search and displace core module including the interface to select files and search and displace operations to run on them. https://searchanddisplace.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
609 B

3 years ago
  1. require('./bootstrap');
  2. window.Vue = require('vue');
  3. /**
  4. * Import vendor classes
  5. */
  6. import PrimeVue from 'primevue/config';
  7. import Button from 'primevue/button';
  8. import Card from 'primevue/card';
  9. import Sidebar from 'primevue/sidebar';
  10. import OrderList from 'primevue/orderlist';
  11. // Own components
  12. import Home from './components/Home';
  13. window.Event = new Vue();
  14. Vue.use(PrimeVue, {
  15. ripple: true,
  16. });
  17. Vue.component('Button', Button)
  18. .component('Card', Card)
  19. .component('Sidebar', Sidebar)
  20. .component('OrderList', OrderList);
  21. Vue.component('home', Home);
  22. new Vue({
  23. el: '#app',
  24. });