ofcold-password
v1.0.2
Published
A powerful password validator that supports bootstrap4 by default.
Downloads
4
Maintainers
Readme
password
A powerful password validator that supports bootstrap4 by default.
Installation
npm install ofcold-password --save
Usage
<OfcoldPassword v-model="password"></OfcoldPassword>
import Vue from 'vue';
import BootstrapVue from 'bootstrap-vue'
import OfcoldPassword from 'ofcold-password';
Vue.use(BootstrapVue);
Vue.use(OfcoldPassword);
OR
import Vue from 'vue'
import BootstrapVue from 'bootstrap-vue'
import OfcoldPassword from 'ofcold-password/src/App';
Vue.use(BootstrapVue);
export default {
components: {
OfcoldPassword
}
}