9 lines
191 B
Plaintext
9 lines
191 B
Plaintext
|
|
import VueTelInput from 'vue-tel-input'
|
||
|
|
import { boot } from "quasar/wrappers"
|
||
|
|
|
||
|
|
// "async" is optional
|
||
|
|
export default boot(async ({ app }) => {
|
||
|
|
// something to do
|
||
|
|
app.use(VueTelInput)
|
||
|
|
})
|