File: //proc/thread-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');