A powerful password validator that supports bootstrap4 by default.
npm install ofcold-password --save
<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
}
}