-
-
Notifications
You must be signed in to change notification settings - Fork 30
New issue
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
Feature requests - inputs #97
Comments
About request loading, I prefer to use global masks, like this: <div>
<app-layout>
Your template
</app-layout>
<loading-layout v-if="$store.isLoading"></loading-layout>
</div> |
I ment input masks. It's a way to control input. Sometimes formating and pre-validation of data is needed, |
Hi guys, is it possible using something like maska with BalmUI? |
@siloam @elf-mouse I am trying the sample below without success. Do you have any idea to solve this? <template>
<ui-textfield
v-model="model"
:attrs="{ 'v-maska': '', 'data-maska': '#####-###'}"
required
maxlength="9">
Example
</ui-textfield>
</template>
<script>
import { vMaska } from "maska"
export default {
directives: { maska: vMaska },
data () {
return {
model: null
}
}
}
</script> |
Hi @rodrigobraga , you can use
|
@elf-mouse Thanks! |
The text was updated successfully, but these errors were encountered: