dwqs / lue

:seedling: Vue and vuex based library, writing less verbose code.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

js-standard-style build pass npm-version license

lue

🌱 Vue and vuex based library, writing less verbose code.

Installation

Install the pkg with npm:

npm install lue --save

or yarn

yarn add lue

Basic Uasage

1. create a module

// counter.js
export default {
    namespace: 'counter',
    state: {
        count: 0,
        title: 'Counter'
    },
    actions: {
        increase ({dispatch, state}, payload) {
            const val = state.count + 1;
            // should be return a object to update state
            // if return undefined or not a object, state won't be updated 
            return {
                count: val
            };
        },
        decrease ({dispatch, state}, payload) {
            const val = state.count - 1;         
            return {
                count: val
            };
        }
    }  
};

2. export all modules as a object

// modules/index.js
import counter from 'path/to/counter';
import other from 'path/to/other';

export default {
    counter,
    other
};

3. create vue router options

// options/index.js
const App = () => import(/* webpackChunkName: "app" */ 'path/to/app/index.vue');
const Counter = () => import(/* webpackChunkName: "counter" */ 'path/to/counter/index');

const Outer = { template: '<router-view></router-view>' };

export default {
    mode: 'history',
    routes: [
        {
            path: '/',
            component: Outer,
            children: [
                { path: '', component: App },
                { path: 'counter', component: Counter },
                // other config
            ]
        }
    ]
}

4. create your app

import Vue from 'vue';
// path/to/index.js
import Lue from 'lue';

import modules from 'path/to/modules/index';
import routerOptions from 'path/to/options/index';
import filters from 'path/to/filter/index';

// 1. install plugin
Vue.use(Lue);

// 2. new a lue instance
const app = new Lue();

// 3. create store
app.createStore(modules);

// 4. init router
app.initRouter(routerOptions);

// 5. start your application
app.start('#app', {
    // optional options object
    filters,
    // env/vue-i18n.etc
});

5. combine lue with vue components

<template>
    <div class="counter">
        <h3>{{title}}:</h3>
        <div>
            <span class="decrease" @click="sub">-</span>
            <span>{{count}}</span>
            <span class="increase" @click="add">+</span>
        </div>
    </div>
</template>

<script>
    import { mergeActions, mergeProps } from 'lue';

    export default {
        computed: {
            ...mergeProps(['counter.count', 'counter.title'])
            // or
            // ...mergeProps({
            //    test: 'counter.title',
            // })
        },

        methods: {
            ...mergeActions(['counter.increase', 'counter.decrease']),
            add () {
                this.increase();
            },

            sub () {
                this.decrease();
            }
        }
    }
</script>

Lue Instance Properties

.store: Object

Vuex store instance.

.router: Object

Vue router instance.

.options: Object

Lue constructor options.

Lue Instance Methods

.createStore(modules: Object, opts?: Object)

Create vuex store. See opts.

.initRouter(routerOptions: Object)

Init vue-router instance. See routerOptions

.start(el: String, opts?: Object)

Start the app. See opts of creating a vue instance. el is a css selector for document.querySelector

Examples

Running the examples:

npm install
npm run dev # serve examples at localhost:8000

LICENSE

MIT

About

:seedling: Vue and vuex based library, writing less verbose code.

License:MIT License


Languages

Language:JavaScript 98.0%Language:HTML 2.0%