npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@cuby/vue-address

v0.1.39

Published

## Project setup ``` npm i @cuby/vue-address ```

Downloads

41

Readme

vue-address

Provide Hong-Kong and Taiwan address vue selector address select is a lightweight yet flexible plugin for Vue.js 2.0 that allows you to easily get correct address input.

It supports the following features:

  • 提供香港及台灣的中英文地址輸入格式。
  • 自動判斷輸入內容。若全為英文及數字,判別為英文地址,輸出英語地址格式。若有中文,輸出中文地址格式。
  • 支援bootstrap validator
  • 不依靠其他套件

Installation

Package is installable via npm.

~$ npm i @cuby/vue-address

Configuration

Provide address inputer and district selector

// resources\js\app.js

import { VueDistrict, VueAddress } from '@cuby/vue-address';
Vue.component("vue-district", VueDistrict);
Vue.component("vue-address", VueAddress);
// resources\views\XXXX.blade.php

<!DOCTYPE html>
<html lang="zh">
    <head>
        <meta charset="utf-8">
        <meta name="viewport" content="width=device-width, initial-scale=1">
    </head>
    <body>
        <div id="app">
            <vue-address name="addr" class="no-gutters"></vue-address>
        </div>
    </body>
</html>

Basic Usage

name屬性為必設屬性。POST可用name設定的值取得結果。前端可透過id來取得地址字串。

預設

  • country_code: 'zh-hk' // 香港
  • lang: 'zh' // 中文
  • styles: 'block' // block
  • size: 'normal' // 普通
<vue-address name="addr"></vue-address>
<vue-district name="dist"></vue-district>

Props

country_code

地址格式

values: zh-hk(default) | zh-tw

<vue-address name="addr" country_code="zh-hk"></vue-address>
<vue-district name="dist" country_code="zh-hk"></vue-district>

json

地址格式。當設定時以json呈現

<vue-address name="addr" json></vue-address>
<vue-district name="dist" json></vue-district>

vue-district 的回傳

<input type="hidden" id="addr_dist" name="addr_dist" value="臺北市中正區">

vue-district 設定 json 時的回傳

<input type="hidden" id="addr_dist_json" name="addr_dist_json" value='{"zh":{"city":"臺北市","dist":"中正區"},"en":{"city":"Taipei City","dist":"Zhongzheng Dist."}}'>

PS. vue-district 的 json 回傳包含選擇項目的中文及英文名稱

vue-address 的回傳

<!-- 輸入內容含有中文時 -->
<input type="hidden" id="addr" name="addr" value='{"city":"臺北市","dist":"中正區","street":"北平西路","lane":"","ally":"","no":"3","floor":"","room":""}'>
<input type="hidden" id="addr_text" name="addr_text" value="臺北市中正區北平西路3號">
<!-- 輸入內容為英文時 -->
<input type="hidden" id="addr" name="addr" value='{"city":"Taipei City","dist":"Zhongzheng Dist.","street":"Beiping W. Rd.","lane":"","ally":"","no":"3","floor":"","room":""}'>
<input type="hidden" id="addr_text" name="addr_text" value="No 3, Beiping W Road,Zhongzheng Dist.,Taipei City">

vue-address 設定 json 時的回傳(Deprecated)

同時回傳字串及json格式,取消json參數

lang

介面文字語系

values: zh(default) | en

<vue-address name="addr" lang="en"></vue-address>
<vue-district name="dist" lang="en"></vue-district>

size

輸入框及文字大小

values: sm | lg | (不設定時為正常尺寸)

<vue-address name="addr" size="lg"></vue-address>
<vue-district name="dist" size="lg"></vue-district>

styles

輸入框擺放樣式

values: heading | underline | block(default)

heading: 輸入框名稱位於輸入框的左邊

underline: 輸入框名稱位於輸入框的下方

block: 輸入框名稱位於輸入框的提示語中

<vue-address name="addr" styles="block"></vue-address>
<vue-district name="dist" styles="block"></vue-district>

v-on:return

在vue中取得地址

<vue-address name="addr" v-on:return="getAddr"></vue-address>
<vue-district name="dist" v-on:return="getDist"></vue-district>

value


設定地址

<vue-address name="address" class="no-gutters" size="lg" styles="block" country_code="zh-tw" json value='{"city":"香港","dist":"香港仔","street":"港灣道12號","building":"灣仔政府大樓","floor":"","block":"","room":""}'></vue-address>
<vue-district name="dist" value="香港,香港仔"></vue-district>

Keywords

HongKong Address, Taiwan Address