Created
December 6, 2020 01:00
-
-
Save spiritbroski/00082821062d178925ec2a808b35dfdd to your computer and use it in GitHub Desktop.
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
| ... | |
| <v-row justify="space-between"> | |
| <v-col><v-btn color="green" v-if="!paypalToken">CONNECT PAYPAL</v-btn></v-col> | |
| <v-col class="font-weight-bold text-h5" v-if="paypalToken">{{paypalBalance}}</v-col> | |
| <v-col v-if="paypalToken"><v-btn color="green">withdraw</v-btn></v-col> | |
| </v-row> | |
| ... | |
| <script lang="ts"> | |
| ... | |
| @Prop({ required: false }) readonly paypalBalance!: string | |
| @Prop({ required: true }) readonly paypalToken!: boolean | |
| ... | |
| </script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment