I need to integrate ExtJS WebComponents with Nuxt.js. According to Sencha docs about integrating ExtJS with Vue.js I need to edit src/main.js file this way:
/*global Ext*/
import Vue from 'vue'
import App from './App.vue'
import '@sencha/ext-web-components/lib/ext-panel.component';
Ext.onReady(function() {
new Vue({
render: h => h(App)
}).$mount('#app')
});
How can it be done in Nuxt.js?