vue-find-telco
Version:
Find the TSP your phone number belongs to
63 lines (46 loc) • 1.4 kB
Markdown
and then inputting your phone number can be Aaargh! because i need to keep checking
which TSP(Telecommunication Service Provider) owns '0903', '0803' etc. With this component, it can auto-detect the
Telco for the user, win win.

# ✇ Usage
```
npm i --save vue-find-telco
```
```js
import FindTelco from "vue-find-telco";
Vue.component("find-telco", FindTelco);
```
```html
<find-telco placeHolder="Enter your phone number" :inputStyle="myStyle">
</find-telco>
```
Defaults to 'Enter your Phone Number'. This is the text you want in the textbox.
This is the default styling for the textbox. You can modify this with this prop. <br>
Defaults to: <br>
```js
{
"max-width": "50%",
padding: "5% 15%",
"font-size": "2rem",
"text-align": "center",
border: "1px solid #eda900"
}
```
To get the value of the Telco for use in your code, listen for the ***find-telco*** event, which emits the telco found from this component.
```html
<find-telco v-on:find-telco="showTelco($event)"></find-telco>
<script>
export default {
methods:{
showTelco(e) {
console.log(e) // Shows name of Telco
}
}
}
</script>
```
Selecting your Telco