Skip to content

Instantly share code, notes, and snippets.

@spiritbroski
Created December 6, 2020 01:00
Show Gist options
  • Select an option

  • Save spiritbroski/00082821062d178925ec2a808b35dfdd to your computer and use it in GitHub Desktop.

Select an option

Save spiritbroski/00082821062d178925ec2a808b35dfdd to your computer and use it in GitHub Desktop.
...
<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