miox-vue

0.1.0 • Public • Published

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);
        })
    }

    // ...
}

Readme

Keywords

none

Package Sidebar

Install

npm i miox-vue

Weekly Downloads

0

Version

0.1.0

License

MIT

Last publish

Collaborators

  • evio
  • liyangready