I’m trying to make a website with plugins, the admin panel is all Vue.js, and I want the plugin to be an external component (Rating.vue, AdsConnect.vue), how I can do that, and is that possible?
I think that the Eval
function can help me, but I really don’t know; and, in case I can’t use external components, can I use the component after building the component itself?
JavaScript
x
19
19
1
try {
2
window.axios = require('axios');
3
window.axios.defaults.headers.common['X-Requested-With'] = 'XMLHttpRequest';
4
window.Vue = require('vue');
5
} catch (e) {
6
}
7
8
import Vuetify from 'vuetify'
9
Vue.use(Vuetify);
10
11
import App from './App.vue'
12
const app = new Vue({
13
el: '#app',
14
render: h => h(App),
15
vuetify: new Vuetify({
16
icons: {iconfont: 'mdi'},
17
}),
18
});
19
This should be the basic template for every plugin.
Advertisement
Answer
If you’re hosting the .vue file on your serve you can use this library https://github.com/FranckFreiburger/http-vue-loader for Vue2, and https://github.com/FranckFreiburger/vue3-sfc-loader for Vue3
This library load via http your components