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
Does anyone know to setup this library in a vue + inertiajs app? I'm having troubles making it work
The text was updated successfully, but these errors were encountered:
in you app.js file :
app.js
import {createApp, h} from 'vue'; import { createInertiaApp } from '@inertiajs/vue3' import VueTheMask from 'vue-the-mask' createInertiaApp({ resolve: name => { const pages = import.meta.glob('./Pages/**/*.vue', { eager: true }) return pages[`./Pages/${name}.vue`] }, setup({el, App, props, plugin}) { createApp({render: () => h(App, props)}) .use(plugin) .use(VueTheMask) .mount(el) } });
in your component :
<template> <input v-model="min_price" v-mask="'###,###,###'" masked="false" name="min" type="text"/> <template/> <script setup> import 'vue-tel-input/vue-tel-input.css'; </script>
Sorry, something went wrong.
No branches or pull requests
Does anyone know to setup this library in a vue + inertiajs app? I'm having troubles making it work
The text was updated successfully, but these errors were encountered: