0.1.0 • Published 9 years ago

miox-vue v0.1.0

Weekly downloads
1
License
MIT
Repository
-
Last release
9 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

9 years ago

0.0.10

10 years ago

0.0.9

10 years ago

0.0.8

10 years ago

0.0.7

10 years ago

0.0.6

10 years ago

0.0.5

10 years ago

0.0.4

10 years ago

0.0.3

10 years ago