miox-vue
v0.1.0
Published
miox-vue
Downloads
8
Readme
Miox-Vue
support vuejs
engine for miox
Engine
import { engine } from 'miox-vue';
Bootstrap(async app => {
app.engine(engine);
// ...
})
Component
import { component } from 'miox-vue';
class NewComponent extends component {
constructor(){
super();
}
// ...
}
Webview
import { webview } from 'miox-vue';
class NewWebview extends webview {
constrcutor(el){
super(el);
}
init(){
this.on('ready', vm => {
console.log(vm);
})
}
// ...
}