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-thousandth-input

v0.1.2

Published

vue-thousandth-input component for Vue.js / 基于vue的一个千分位输入表单组件

Downloads

20

Readme

vue-thousandth-input

vue-thousandth-input component for Vue.js / 基于vue的一个千分位输入表单组件

Install / 下载

npm

npm install vue-thousandth-input

yarn

yarn add vue-thousandth-input

Example 1: Register the plugin as a global component / 全局注册组件

import Vue from 'vue'
import VuethousandthInput from 'vue-thousandth-input'

Vue.use(VuethousandthInput)

Then use it in a component / 然后在组件中这么使用

<template>
 <vue-thousandth-input v-model="value"></vue-thousandth-input>
</template>

Example 2: Add a component / 局部注册组件

<template>
 <vue-thousandth-input v-model="value"></vue-thousandth-input>
</template>

<script>
  import { VueThousandthInput } from 'vue-thousandth-input';

  export default {
    name: 'VueThousandthInput',
    components: {
      VueThousandthInput
    },
    data () {
     return {
      value
     }
    }
  };
</script>

CDN

<script src="https://unpkg.com/vue"></script>
<script src="https://unpkg.com/vue-thousandth-input"></script>

Then you need to register it

Vue.component('vue-thousandth-input')

Props / 参数

| Property | Type | Default value | Description | | -------- | ---- | ------------- | ----------- | | value | String|'' | v-model Default value / v-model默认值 | | decimalPoint | Number | | Keep a few decimal places / 保留几位小数点 | | id-set | String | '' | Add id / 添加自定义id / Available from v0.1.2 | | class-set | String | '' | Add class / 添加自定义class | | style-set | String | '' | Add style / 添加自定义style | | placeholder | String | '' | placeholder for the input |

event / 事件

| Event | Arguments | Description | Notes | | ----- | --------- | ----------- | ----- | | change | Object | Fires when the input changes with the argument is the object includes { event, changeValue, value } / 输入事件返回的值 | onInput | | focus | Object | Fires when the focus with the argument is the object includes { event, changeValue, value } / 获取焦点事件返回的值 | onFocus Available from v0.1.2 / v0.1.2版本支持 | | blur | Object | Fires when the blur with the argument is the object includes { event, changeValue, value } / 失去焦点返回的值 | onBlur Available from v0.1.2 / v0.1.2版本支持 |