0.0.3 • Published 6 years ago

vuex-twzipcode v0.0.3

Weekly downloads
26
License
-
Repository
-
Last release
6 years ago

vuex-twzipcode

npm version

github page
npm page

Rewrite Vue2-twzipcode in Vuex way

this package was based on orginal repos made by knovour(vue2-twzipcode) and CasperLaiTW(vue-twzipcode)

image

Install

npm install vuex-twzipcode --save

Usage

module name: twzipcode

your root js file (or anywhere you put Vuex store in)

    import Vue from 'vue'
    import App from './App'

    import twzipcode from 'vuex-twzipcode';
    
    /* insert module and components */
    Vue.use(twzipcode, { store }); 
    
    /* your original store */
    import store from './store' 

    new Vue({
        el: '#app',
        store,
        components: { App },
        template: '<App/>'
    })

component

The package will automatically register <twzipcode> as global component, you can use it like so:

    <div id="app">
        <twzipcode></twzipcode>
    </div>    

Module states

access county, district, zipcode

you can access them with { mapState } from Vuex

    computed: {
        // access all states in the module
        ...mapState(['twzipcode']),
    }

or

    computed: {
        // access single state in the module
        ...mapState({
            county: state => state.twzipcode.county
        }),
    }

Module Actions

resetDistrict()

(this action is automatically used when county is changed)

reset district to the first district of current county.

  this.$store.dispatch('twzipcode/resetDistrict');

setCountyAndDistrictFromZipcode(inputZipcode)

setting matched county and district with given inputZipcode

  this.$store.dispatch('twzipcode/setCountyAndDistrictFromZipcode', 437);
  // set county to be '台中市', district to '大甲區'

Component props

classNames

type: Object

class for each input

default:

{
  county: 'formControl-twzipcode',
  district: 'formControl-twzipcode',
  zipcode: 'formControl-twzipcode',
}

example: if you need to use your custom classes, use it like

  <twzipcode 
    :class-names="{county: 'yourCustomClass1', district: 'yourCustomClass2', zipcode: 'yourCustomClass3'}"
  >
0.0.3

6 years ago

0.0.2

6 years ago

0.0.1

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago