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

vue-daum-postcode

v1.2.1

Published

Daum(Kakao) Postcode Component for Vue 3.

Downloads

5,927

Readme

Vue Daum Postcode

Daum 우편번호 서비스를 기반으로 작업된 Vue Component 입니다.

Vue 2.x를 사용하다면 v0.x branch브랜치를 참고해주세요.

Installation

npm i vue-daum-postcode

Global Registration

Vue3 Global Registration Guide

import { createApp } from 'vue'
import VueDaumPostcode from 'vue-daum-postcode'


const app = createApp(/* */)

app.use(VueDaumPostcode) // export default is plugin

Local Registration

Vue3 Local Registration Guide

<template>
  <VueDaumPostcode :options="options" />
</template>
<script>
import { VueDaumPostcode } from 'vue-daum-postcode'

export default {
  components: {
    VueDaumPostcode, // export VueDaumPostcode is component
  },
}
</script>

기본 태그 변경 (Global Registration)

app.use(VueDaumPostcode, {
  name: 'DaumPostcode',
})

Postcode Js 경로 변경 (Global Registration)

기본 Daum postcode.js url(https://t1.daumcdn.net/mapjsapi/bundle/postcode/prod/postcode.v2.js)을 다른 url로 변경하려면 다음과 같이 설정하시면 됩니다.

app.use(VueDaumPostcode, {
  scriptUrl: "https://s3.ap-northeast-2.amazonaws.com/YOUR_BUCKET_NAME/postcode.v2.js"
})

Props

이름 | 타입 | 설명 | 기본값 ------------------------- | --------- | ----------- | ------- q | String | 검색어 | "" animation | Boolean | Daum 우편번호, 생성자속성에서 animation. | false noAutoMapping | Boolean | Daum 우편번호, 생성자속성에서 autoMapping, 기본값을 true에서 false로 조정. | false noShorthand | Boolean | Daum 우편번호, 생성자속성에서 shorthand, 기본값을 true에서 false로 조정. | false pleaseReadGuide | Number | Daum 우편번호, 생성자속성에서 pleaseReadGuide. | 0 pleaseReadGuideTimer | Number | Daum 우편번호, 생성자속성에서 pleaseReadGuideTimer. | 1.5 maxSuggestItems | Number | Daum 우편번호, 생성자속성에서 maxSuggestItems. | 10 showMoreHName | Boolean | Daum 우편번호, 생성자속성에서 showMoreHName. | false hideMapBtn | Boolean | Daum 우편번호, 생성자속성에서 hideMapBtn. | false hideEngBtn | Boolean | Daum 우편번호, 생성자속성에서 hideEngBtn. | false alwaysShowEngAddr | Boolean | Daum 우편번호, 생성자속성에서 alwaysShowEngAddr. | false zonecodeOnly | Boolean | Daum 우편번호, 생성자속성에서 zonecodeOnly. | false noSubmitMode | Boolean | Submit Mode 비활성화시 사용. (관련 이슈 링크) | false theme | object | Daum 우편번호, 생성자속성에서 theme. | {}

Events

이름 | 설명 ------------------------- | ----------- load | 다음 우편번호가 로딩 되었을 때 발생 search | Daum 우편번호, 속성에서 onsearch. complete | Daum 우편번호, 속성에서 oncomplete. resize | Daum 우편번호, 속성에서 onresize. error | 스크립트 로딩 실패시 발생

Slots

이름 | 설명 ------------------------- | --------- loading | 다음 우편번호가 아직 완전히 불러오기 전에 보여줄 내용이 있는 경우 해당 슬롯에 넣습니다. (ex. spinner)