Skip to content

Instantly share code, notes, and snippets.

@CarterTsai
Created December 2, 2019 15:11
Show Gist options
  • Save CarterTsai/452d247d533601aba73443964b89fc11 to your computer and use it in GitHub Desktop.
Save CarterTsai/452d247d533601aba73443964b89fc11 to your computer and use it in GitHub Desktop.
Html Input Text example
<div class="container">
<div id="example">
<ul class="list-group" v-for="data in inputData">
<v-input-text :value.sync="data"
regx-msg="請輸入數字正確格式"
regx="^[0-9]+$"
placeholder="input you text"
has-button="false"
button-word="檢查"
:button-event="test"/>
</ul>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment