├── .babelrc ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .npmignore ├── .travis.yml ├── LICENSE ├── README.md ├── __test__ ├── utils.test.js ├── validator │ └── date.test.js └── verify.test.js ├── config ├── build.js ├── copy.js └── rollup.config.js ├── coverage ├── clover.xml ├── coverage-final.json ├── lcov-report │ ├── base.css │ ├── index.html │ ├── prettify.css │ ├── prettify.js │ ├── sort-arrow-sprite.png │ ├── sorter.js │ └── src │ │ ├── directive.js.html │ │ ├── error.js.html │ │ ├── index.html │ │ ├── index.js.html │ │ ├── locale │ │ ├── en_us.js.html │ │ ├── index.html │ │ ├── index.js.html │ │ └── zh_cn.js.html │ │ ├── utils.js.html │ │ ├── validator │ │ ├── date.js.html │ │ ├── email.js.html │ │ ├── identity.js.html │ │ ├── index.html │ │ ├── index.js.html │ │ ├── len.js.html │ │ ├── max.js.html │ │ ├── min.js.html │ │ ├── numberic.js.html │ │ └── required.js.html │ │ ├── verify.js.html │ │ └── vtips │ │ ├── component.js.html │ │ ├── index.html │ │ └── index.js.html └── lcov.info ├── dist ├── locale │ ├── en_us.js │ ├── index.js │ └── zh_cn.js ├── v-verify.js └── v-verify.min.js ├── docs ├── _config.yml ├── css │ ├── style.css │ └── style.css.map ├── favicon.ico ├── index.html └── js │ ├── 0.chunk.js │ ├── 0.chunk.js.map │ ├── 1.chunk.js │ ├── 1.chunk.js.map │ ├── 2.chunk.js │ ├── 2.chunk.js.map │ ├── 3.chunk.js │ ├── 3.chunk.js.map │ ├── 4.chunk.js │ ├── 4.chunk.js.map │ ├── main.js │ └── main.js.map ├── example ├── App.vue ├── assets │ ├── fonts │ │ ├── icomoon.eot │ │ ├── icomoon.svg │ │ ├── icomoon.ttf │ │ └── icomoon.woff │ └── style │ │ ├── basic.scss │ │ └── example.scss ├── components │ ├── index.js │ └── layout │ │ ├── index.js │ │ └── layout.vue ├── config │ ├── build.js │ ├── server.js │ ├── webpack.base.conf.js │ ├── webpack.dev.conf.js │ └── webpack.prod.conf.js ├── favicon.ico ├── index.html ├── main.js ├── pages │ ├── Introduction.md │ ├── basic.md │ ├── install.md │ ├── submit.md │ └── usage.md └── router.js ├── package.json ├── src ├── directive.js ├── error.js ├── index.js ├── locale │ ├── en_us.js │ ├── index.js │ └── zh_cn.js ├── utils.js ├── validator │ ├── date.js │ ├── email.js │ ├── identity.js │ ├── index.js │ ├── len.js │ ├── max.js │ ├── min.js │ ├── numberic.js │ └── required.js ├── verify.js └── vtips │ ├── component.js │ └── index.js ├── v-verify.png ├── v-verify.svg └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | /dist -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | example 4 | docs 5 | config 6 | *.psd 7 | *log* 8 | .vscode/* -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/README.md -------------------------------------------------------------------------------- /__test__/utils.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/__test__/utils.test.js -------------------------------------------------------------------------------- /__test__/validator/date.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/__test__/validator/date.test.js -------------------------------------------------------------------------------- /__test__/verify.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/__test__/verify.test.js -------------------------------------------------------------------------------- /config/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/config/build.js -------------------------------------------------------------------------------- /config/copy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/config/copy.js -------------------------------------------------------------------------------- /config/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/config/rollup.config.js -------------------------------------------------------------------------------- /coverage/clover.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/coverage/clover.xml -------------------------------------------------------------------------------- /coverage/coverage-final.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/coverage/coverage-final.json -------------------------------------------------------------------------------- /coverage/lcov-report/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/coverage/lcov-report/base.css -------------------------------------------------------------------------------- /coverage/lcov-report/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/coverage/lcov-report/index.html -------------------------------------------------------------------------------- /coverage/lcov-report/prettify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/coverage/lcov-report/prettify.css -------------------------------------------------------------------------------- /coverage/lcov-report/prettify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/coverage/lcov-report/prettify.js -------------------------------------------------------------------------------- /coverage/lcov-report/sort-arrow-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/coverage/lcov-report/sort-arrow-sprite.png -------------------------------------------------------------------------------- /coverage/lcov-report/sorter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/coverage/lcov-report/sorter.js -------------------------------------------------------------------------------- /coverage/lcov-report/src/directive.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/coverage/lcov-report/src/directive.js.html -------------------------------------------------------------------------------- /coverage/lcov-report/src/error.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/coverage/lcov-report/src/error.js.html -------------------------------------------------------------------------------- /coverage/lcov-report/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/coverage/lcov-report/src/index.html -------------------------------------------------------------------------------- /coverage/lcov-report/src/index.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/coverage/lcov-report/src/index.js.html -------------------------------------------------------------------------------- /coverage/lcov-report/src/locale/en_us.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/coverage/lcov-report/src/locale/en_us.js.html -------------------------------------------------------------------------------- /coverage/lcov-report/src/locale/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/coverage/lcov-report/src/locale/index.html -------------------------------------------------------------------------------- /coverage/lcov-report/src/locale/index.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/coverage/lcov-report/src/locale/index.js.html -------------------------------------------------------------------------------- /coverage/lcov-report/src/locale/zh_cn.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/coverage/lcov-report/src/locale/zh_cn.js.html -------------------------------------------------------------------------------- /coverage/lcov-report/src/utils.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/coverage/lcov-report/src/utils.js.html -------------------------------------------------------------------------------- /coverage/lcov-report/src/validator/date.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/coverage/lcov-report/src/validator/date.js.html -------------------------------------------------------------------------------- /coverage/lcov-report/src/validator/email.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/coverage/lcov-report/src/validator/email.js.html -------------------------------------------------------------------------------- /coverage/lcov-report/src/validator/identity.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/coverage/lcov-report/src/validator/identity.js.html -------------------------------------------------------------------------------- /coverage/lcov-report/src/validator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/coverage/lcov-report/src/validator/index.html -------------------------------------------------------------------------------- /coverage/lcov-report/src/validator/index.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/coverage/lcov-report/src/validator/index.js.html -------------------------------------------------------------------------------- /coverage/lcov-report/src/validator/len.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/coverage/lcov-report/src/validator/len.js.html -------------------------------------------------------------------------------- /coverage/lcov-report/src/validator/max.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/coverage/lcov-report/src/validator/max.js.html -------------------------------------------------------------------------------- /coverage/lcov-report/src/validator/min.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/coverage/lcov-report/src/validator/min.js.html -------------------------------------------------------------------------------- /coverage/lcov-report/src/validator/numberic.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/coverage/lcov-report/src/validator/numberic.js.html -------------------------------------------------------------------------------- /coverage/lcov-report/src/validator/required.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/coverage/lcov-report/src/validator/required.js.html -------------------------------------------------------------------------------- /coverage/lcov-report/src/verify.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/coverage/lcov-report/src/verify.js.html -------------------------------------------------------------------------------- /coverage/lcov-report/src/vtips/component.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/coverage/lcov-report/src/vtips/component.js.html -------------------------------------------------------------------------------- /coverage/lcov-report/src/vtips/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/coverage/lcov-report/src/vtips/index.html -------------------------------------------------------------------------------- /coverage/lcov-report/src/vtips/index.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/coverage/lcov-report/src/vtips/index.js.html -------------------------------------------------------------------------------- /coverage/lcov.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/coverage/lcov.info -------------------------------------------------------------------------------- /dist/locale/en_us.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/dist/locale/en_us.js -------------------------------------------------------------------------------- /dist/locale/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/dist/locale/index.js -------------------------------------------------------------------------------- /dist/locale/zh_cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/dist/locale/zh_cn.js -------------------------------------------------------------------------------- /dist/v-verify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/dist/v-verify.js -------------------------------------------------------------------------------- /dist/v-verify.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/dist/v-verify.min.js -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/docs/css/style.css -------------------------------------------------------------------------------- /docs/css/style.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/docs/css/style.css.map -------------------------------------------------------------------------------- /docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/docs/favicon.ico -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/js/0.chunk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/docs/js/0.chunk.js -------------------------------------------------------------------------------- /docs/js/0.chunk.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/docs/js/0.chunk.js.map -------------------------------------------------------------------------------- /docs/js/1.chunk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/docs/js/1.chunk.js -------------------------------------------------------------------------------- /docs/js/1.chunk.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/docs/js/1.chunk.js.map -------------------------------------------------------------------------------- /docs/js/2.chunk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/docs/js/2.chunk.js -------------------------------------------------------------------------------- /docs/js/2.chunk.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/docs/js/2.chunk.js.map -------------------------------------------------------------------------------- /docs/js/3.chunk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/docs/js/3.chunk.js -------------------------------------------------------------------------------- /docs/js/3.chunk.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/docs/js/3.chunk.js.map -------------------------------------------------------------------------------- /docs/js/4.chunk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/docs/js/4.chunk.js -------------------------------------------------------------------------------- /docs/js/4.chunk.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/docs/js/4.chunk.js.map -------------------------------------------------------------------------------- /docs/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/docs/js/main.js -------------------------------------------------------------------------------- /docs/js/main.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/docs/js/main.js.map -------------------------------------------------------------------------------- /example/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/example/App.vue -------------------------------------------------------------------------------- /example/assets/fonts/icomoon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/example/assets/fonts/icomoon.eot -------------------------------------------------------------------------------- /example/assets/fonts/icomoon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/example/assets/fonts/icomoon.svg -------------------------------------------------------------------------------- /example/assets/fonts/icomoon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/example/assets/fonts/icomoon.ttf -------------------------------------------------------------------------------- /example/assets/fonts/icomoon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/example/assets/fonts/icomoon.woff -------------------------------------------------------------------------------- /example/assets/style/basic.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/example/assets/style/basic.scss -------------------------------------------------------------------------------- /example/assets/style/example.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/example/assets/style/example.scss -------------------------------------------------------------------------------- /example/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/example/components/index.js -------------------------------------------------------------------------------- /example/components/layout/index.js: -------------------------------------------------------------------------------- 1 | export { default } from './layout.vue' -------------------------------------------------------------------------------- /example/components/layout/layout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/example/components/layout/layout.vue -------------------------------------------------------------------------------- /example/config/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/example/config/build.js -------------------------------------------------------------------------------- /example/config/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/example/config/server.js -------------------------------------------------------------------------------- /example/config/webpack.base.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/example/config/webpack.base.conf.js -------------------------------------------------------------------------------- /example/config/webpack.dev.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/example/config/webpack.dev.conf.js -------------------------------------------------------------------------------- /example/config/webpack.prod.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/example/config/webpack.prod.conf.js -------------------------------------------------------------------------------- /example/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/example/favicon.ico -------------------------------------------------------------------------------- /example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/example/index.html -------------------------------------------------------------------------------- /example/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/example/main.js -------------------------------------------------------------------------------- /example/pages/Introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/example/pages/Introduction.md -------------------------------------------------------------------------------- /example/pages/basic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/example/pages/basic.md -------------------------------------------------------------------------------- /example/pages/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/example/pages/install.md -------------------------------------------------------------------------------- /example/pages/submit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/example/pages/submit.md -------------------------------------------------------------------------------- /example/pages/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/example/pages/usage.md -------------------------------------------------------------------------------- /example/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/example/router.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/package.json -------------------------------------------------------------------------------- /src/directive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/src/directive.js -------------------------------------------------------------------------------- /src/error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/src/error.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/src/index.js -------------------------------------------------------------------------------- /src/locale/en_us.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/src/locale/en_us.js -------------------------------------------------------------------------------- /src/locale/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/src/locale/index.js -------------------------------------------------------------------------------- /src/locale/zh_cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/src/locale/zh_cn.js -------------------------------------------------------------------------------- /src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/src/utils.js -------------------------------------------------------------------------------- /src/validator/date.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/src/validator/date.js -------------------------------------------------------------------------------- /src/validator/email.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/src/validator/email.js -------------------------------------------------------------------------------- /src/validator/identity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/src/validator/identity.js -------------------------------------------------------------------------------- /src/validator/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/src/validator/index.js -------------------------------------------------------------------------------- /src/validator/len.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/src/validator/len.js -------------------------------------------------------------------------------- /src/validator/max.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/src/validator/max.js -------------------------------------------------------------------------------- /src/validator/min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/src/validator/min.js -------------------------------------------------------------------------------- /src/validator/numberic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/src/validator/numberic.js -------------------------------------------------------------------------------- /src/validator/required.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/src/validator/required.js -------------------------------------------------------------------------------- /src/verify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/src/verify.js -------------------------------------------------------------------------------- /src/vtips/component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/src/vtips/component.js -------------------------------------------------------------------------------- /src/vtips/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/src/vtips/index.js -------------------------------------------------------------------------------- /v-verify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/v-verify.png -------------------------------------------------------------------------------- /v-verify.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/v-verify.svg -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallalso/v-verify/HEAD/yarn.lock --------------------------------------------------------------------------------