Skip to content

Commit f56d45c

Browse files
authored
Create index.vue
1 parent c1d7d3c commit f56d45c

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

index.vue

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<template>
2+
<div>
3+
<currency-input v-model="value" currency="INR" locale="en-IN"/>
4+
</div>
5+
</template>
6+
<script>
7+
// import vue
8+
import Vue from 'vue'
9+
// import Vue Currency Input
10+
import VueCurrencyInput from 'vue-weblineindia-currency-input'
11+
Vue.use(VueCurrencyInput)
12+
export default {
13+
data: () => ({ value: 1000 })
14+
}
15+
</script>

0 commit comments

Comments
 (0)