0.5.2 • Published 4 years ago

vue-find-telco v0.5.2

Weekly downloads
28
License
-
Repository
-
Last release
4 years ago

🔍 Find Telco

Selecting your Telco 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.

GIF

✇ Usage

npm i --save vue-find-telco
import FindTelco from "vue-find-telco";
Vue.component("find-telco", FindTelco);
<find-telco placeHolder="Enter your phone number" :inputStyle="myStyle">
</find-telco>

Props

placeHolder: {String}

Defaults to 'Enter your Phone Number'. This is the text you want in the textbox.

inputStyle: {Object}

This is the default styling for the textbox. You can modify this with this prop.

Defaults to:

{
    "max-width": "50%",
    padding: "5% 15%",
    "font-size": "2rem",
    "text-align": "center",
    border: "1px solid #eda900"
}

Events

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.

<find-telco v-on:find-telco="showTelco($event)"></find-telco>

<script>
export default {
    methods:{
        showTelco(e) {
            console.log(e) // Shows name of Telco
        }
    }
}
</script>
0.3.0

4 years ago

0.5.0

4 years ago

0.4.0

4 years ago

0.5.2

4 years ago

0.5.1

4 years ago

0.2.0

4 years ago

0.1.0

4 years ago