|
@@ -74,13 +74,16 @@ export default {
|
|
|
avatarUrl: '',
|
|
|
nickName: '',
|
|
|
},
|
|
|
+ amountValue: '',
|
|
|
+ currencySymbol: '',
|
|
|
+ amountUsdValue: '',
|
|
|
+ totalCount: '',
|
|
|
},
|
|
|
config: {},
|
|
|
title: 'Treasure Hunt',
|
|
|
isMobile: false,
|
|
|
isChrome: false,
|
|
|
linkHref: '',
|
|
|
- metaTitle: `Treasure Chest: ${this.detail.amountValue} ${this.detail.currencySymbol} (worth $${this.detail.amountUsdValue}) for ${this.detail.totalCount} winners`,
|
|
|
};
|
|
|
},
|
|
|
components: {
|
|
@@ -95,7 +98,7 @@ export default {
|
|
|
// facebook
|
|
|
{
|
|
|
name: 'og:title',
|
|
|
- content: this.metaTitle,
|
|
|
+ content: `Treasure Chest: ${this.detail.amountValue} ${this.detail.currencySymbol} (worth $${this.detail.amountUsdValue}) for ${this.detail.totalCount} winners`,
|
|
|
},
|
|
|
{
|
|
|
name: 'og:image',
|
|
@@ -108,7 +111,7 @@ export default {
|
|
|
},
|
|
|
{
|
|
|
name: 'twitter:title',
|
|
|
- content: this.metaTitle,
|
|
|
+ content: `Treasure Chest: ${this.detail.amountValue} ${this.detail.currencySymbol} (worth $${this.detail.amountUsdValue}) for ${this.detail.totalCount} winners`,
|
|
|
},
|
|
|
{
|
|
|
name: 'twitter:image',
|