0.1.0 • Published 7 years ago

miox-vue v0.1.0

Weekly downloads
1
License
MIT
Repository
-
Last release
7 years ago

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

    // ...
}
0.1.0

7 years ago

0.0.10

8 years ago

0.0.9

8 years ago

0.0.8

8 years ago

0.0.7

8 years ago

0.0.6

8 years ago

0.0.5

8 years ago

0.0.4

8 years ago

0.0.3

8 years ago