Last active
March 5, 2019 11:00
-
-
Save laalaguer/743543d17dd0f52d98892e2b70e8f993 to your computer and use it in GitHub Desktop.
Update the template
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<div id="app"> | |
<div> | |
<b-card style="max-width: 30rem;" :header="myaddress"> | |
<p>{{myamount}} <span class="text-primary">VTHO</span></p> | |
<b-form-group label="To Address:" label-for="toaddress"> | |
<b-form-input id="toaddress" v-model.trim="toaddress"></b-form-input> | |
</b-form-group> | |
<b-form-group label="Transfer Amount" label-for="toamount"> | |
<b-input-group append="VTHO"> | |
<b-form-input id="toamount" type="number" min="0" v-model.number="toamount"> | |
</b-form-input> | |
</b-input-group> | |
</b-form-group> | |
<b-button variant="primary" v-on:click="transfer"> | |
Transfer | |
</b-button> | |
</b-card> | |
</div> | |
</div> | |
</template> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment