HEX
Server: Apache/2.4.52 (Ubuntu)
System: Linux spn-python 5.15.0-89-generic #99-Ubuntu SMP Mon Oct 30 20:42:41 UTC 2023 x86_64
User: arjun (1000)
PHP: 8.1.2-1ubuntu2.20
Disabled: NONE
Upload Files
File: //proc/self/root/home/arjun/projects/buyercall/buyercall/assets/vue/pages/accountsTable.js
// import Vue from 'vue';
// import BootstrapVue from 'bootstrap-vue';
// import VueToast from 'vue-toast-notification';
// import Vuelidate from 'vuelidate';

// import AccountsTable from '../widgets/AccountsTable/index.vue';

// Vue.use(BootstrapVue);
// Vue.use(VueToast);

// Vue.use(Vuelidate);



// new Vue({
//   el: '#accounts-table',
//   components: {
//     AccountsTable,
//   },
// });


import {createApp} from 'vue';
import VueToast from 'vue-toast-notification';
import Vuelidate from '@vuelidate/core';;
import AccountsTable from '../widgets/AccountsTable/index.vue';

const app = createApp({});
 app.component('AccountsTable', AccountsTable);
app.use(VueToast);
app.use(Vuelidate);

app.mount('#accounts-table');