11 lines
221 B
TypeScript
Executable File
11 lines
221 B
TypeScript
Executable File
// @ts-ignore
|
|
import { VueTelInput } from 'vue3-tel-input'
|
|
import { boot } from 'quasar/wrappers'
|
|
|
|
// "async" is optional
|
|
export default boot( ({ app }) => {
|
|
// something to do
|
|
// @ts-ignore
|
|
app.use(VueTelInput)
|
|
})
|