Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
c6dbc6b
Added wathcer for valeu without +
blxnsh Jun 18, 2019
f3575e3
Bump minimist and mkdirp
dependabot[bot] Oct 17, 2023
79acdac
Merge pull request #2 from Players-Health/dependabot/npm_and_yarn/min…
Pablo-PH Oct 17, 2023
f6e4d65
Bump thenify from 3.3.0 to 3.3.1
dependabot[bot] Oct 17, 2023
863f9a9
Bump fsevents from 1.2.9 to 1.2.13
dependabot[bot] Oct 17, 2023
a806b6d
Merge pull request #1 from Players-Health/dependabot/npm_and_yarn/fse…
Pablo-PH Oct 17, 2023
70902dc
Merge pull request #4 from Players-Health/dependabot/npm_and_yarn/the…
Pablo-PH Oct 17, 2023
c0aca42
Bump loader-utils and poi
dependabot[bot] Oct 17, 2023
ae466c5
Merge pull request #8 from Players-Health/dependabot/npm_and_yarn/loa…
Pablo-PH Oct 17, 2023
d654ad2
Bump eventsource and poi
dependabot[bot] Oct 17, 2023
1ded3d3
Bump debug from 4.1.1 to 4.3.4
dependabot[bot] Oct 17, 2023
545e24d
Bump shelljs and eslint
dependabot[bot] Oct 17, 2023
e6b74aa
Bump xml2js and libphonenumber-js
dependabot[bot] Oct 17, 2023
379e33c
Merge pull request #9 from Players-Health/dependabot/npm_and_yarn/eve…
Ronit-Mandal Oct 20, 2023
9ca51d6
Bump jsonpointer and is-my-json-valid
dependabot[bot] Oct 20, 2023
f52a4bf
Merge pull request #5 from Players-Health/dependabot/npm_and_yarn/xml…
Ronit-Mandal Oct 20, 2023
b86f9a6
Merge pull request #12 from Players-Health/dependabot/npm_and_yarn/de…
Ronit-Mandal Oct 20, 2023
1a6804d
Merge pull request #13 from Players-Health/dependabot/npm_and_yarn/sh…
Ronit-Mandal Oct 20, 2023
eeeb032
Merge branch 'master' into dependabot/npm_and_yarn/jsonpointer-and-is…
Ronit-Mandal Oct 23, 2023
9c6be59
Merge pull request #14 from Players-Health/dependabot/npm_and_yarn/js…
Ronit-Mandal Oct 23, 2023
7dd21af
Bump lodash from 4.17.11 to 4.17.21
dependabot[bot] Oct 23, 2023
d1d87d0
Bump debug from 4.1.1 to 4.3.4
dependabot[bot] Oct 23, 2023
ca43181
Bump minimist and mkdirp
dependabot[bot] Oct 23, 2023
6c05069
Merge pull request #15 from Players-Health/dependabot/npm_and_yarn/lo…
Ronit-Mandal Oct 23, 2023
a0ac78f
Merge pull request #16 from Players-Health/dependabot/npm_and_yarn/de…
Ronit-Mandal Oct 23, 2023
c7d514a
Merge pull request #17 from Players-Health/dependabot/npm_and_yarn/mi…
Ronit-Mandal Oct 23, 2023
2ad9c81
Bump browserify-sign from 4.2.1 to 4.2.2
dependabot[bot] Oct 28, 2023
3351de6
Merge pull request #18 from Players-Health/dependabot/npm_and_yarn/br…
Ronit-Mandal Oct 30, 2023
6232a52
Bump follow-redirects from 1.15.3 to 1.15.4
dependabot[bot] Jan 11, 2024
0293a7b
Merge pull request #19 from Players-Health/dependabot/npm_and_yarn/fo…
Pablo-PH Feb 12, 2024
70700f9
Bump elliptic from 6.5.4 to 6.6.1
dependabot[bot] Mar 5, 2025
789e672
Merge pull request #24 from Players-Health/dependabot/npm_and_yarn/el…
veera-lavudi Mar 5, 2025
0979788
Update package-lock.json
veera-lavudi Sep 30, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion demo/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<h1>Telephone Input Vue</h1>
<h2 style="color: #999">made with &#x2764; by Steven.</h2>
<div style="width: 500px; margin: 20px auto;">
<vue-tel-input @input="onInput" :preferredCountries="['us', 'gb', 'ua']"></vue-tel-input>
<vue-tel-input :value="phone_num" @input="onInput" :preferredCountries="['us', 'gb', 'ua']"></vue-tel-input>
</div>
<div v-if="phone.number" style="color: #e83e8c">
<span>
Expand All @@ -23,17 +23,24 @@
</template>

<script>
import { setTimeout } from 'timers';
export default {
name: 'app',
data() {
return {
phone_num: '',
phone: {
number: '',
isValid: false,
country: undefined,
},
};
},
mounted() {
// setTimeout(() => {
// this.phone_num = '380730421488'
// }, 3000)
},
methods: {
onInput(formattedNumber, { number, isValid, country }) {
this.phone.number = number;
Expand Down
2 changes: 1 addition & 1 deletion dist/vue-tel-input.css

Large diffs are not rendered by default.

Loading