File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed
Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ description: MazInputPhoneNumber is a powerful and user-friendly component that
2525
2626The simplest way to use MazInputPhoneNumber - just add it and it works!
2727
28- <ComponentDemo >
28+ <ComponentDemo expanded >
2929 <MazInputPhoneNumber
3030 v-model="phoneNumber"
3131 v-model: country-code ="countryCode"
@@ -42,12 +42,13 @@ The simplest way to use MazInputPhoneNumber - just add it and it works!
4242
4343``` vue
4444<script setup lang="ts">
45- import { MazInputPhoneNumber } from 'maz-ui'
45+ import type { MazInputPhoneNumberData } from 'maz-ui/components/MazInputPhoneNumber'
46+ import MazInputPhoneNumber from 'maz-ui/components/MazInputPhoneNumber'
4647import { ref } from 'vue'
4748
48- const phoneNumber = ref()
49- const countryCode = ref()
50- const results = ref()
49+ const phoneNumber = ref<string> ()
50+ const countryCode = ref<string> ()
51+ const results = ref<MazInputPhoneNumberData> ()
5152</script>
5253
5354<template>
You can’t perform that action at this time.
0 commit comments