File: //proc/thread-self/root/home/arjun/projects/buyercall/buyercall/assets/vue/pages/profileSettings.js
// import Vue from 'vue';
// import BootstrapVue from 'bootstrap-vue';
// import Vuelidate from 'vuelidate';
// import VueToast from 'vue-toast-notification';
// import ProfileSettings from '../widgets/ProfileSettings/index.vue';
// Vue.use(BootstrapVue);
// Vue.use(Vuelidate);
// Vue.use(VueToast);
// new Vue({
// el: '#profile-settings',
// components: {
// ProfileSettings,
// },
// });
import {createApp} from 'vue';
import Vuelidate from '@vuelidate/core';
import VueToast from 'vue-toast-notification';
import ProfileSettings from '../widgets/ProfileSettings/index.vue';
const app = createApp({});
app.component('ProfileSettings', ProfileSettings);
app.use(Vuelidate);
app.use(VueToast);
app.mount('#profile-settings');