it is convenient to use scaffolding to reference ui components on demand, but now there is a project that cannot be changed to scaffolding. How to reference ui components such as elementui? on demand? Thank you
this is scaffolding
import Vue from "vue";
import { Button, Select } from "element-ui";
import App from "./App.vue";
Vue.component(Button.name, Button);
Vue.component(Select.name, Select);
/*
* Vue.use(Button)
* Vue.use(Select)
*/
new Vue({
el: "-sharpapp",
render: h => h(App)
});