We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can you add support for type definitions, please?
The text was updated successfully, but these errors were encountered:
Not really experienced in ts. So if anyone want to make a PR, feel free to do it :)
✌️
Sorry, something went wrong.
Hi guys, made the component works with typescript just changing the import to:
import * as Password from 'vue-password-strength-meter'
Hope it helps, cheers.
Or create a file vue-password-strength-meter.d.t anywhere in your project with following line:
vue-password-strength-meter.d.t
declare module 'vue-password-strength-meter';
vue-password-strength-meter.ts
import Vue from 'vue' import Password from 'vue-password-strength-meter' Vue.use(Password)
nuxt.config.js
... plugin: [ { src: '~plugins/vue-password-strength-metter', ssr: false } ], ...
<client-only> <password v-model="password" :strength-meter-only="true" /> </client-only>
No branches or pull requests
Can you add support for type definitions, please?
The text was updated successfully, but these errors were encountered: