+
-
@@ -114,6 +114,18 @@ import { INftData } from '@/types/Nft'
export default class extends Vue {
@Prop() private nftData: INftData
+ get waitStr() {
+ return this.needActivate ? '-- NEED ACTIVATION --' : '-- COMING SOON --'
+ }
+
+ get needActivate() {
+ return (this.nftData?.id || '').length > 17
+ }
+
+ get hideAttr() {
+ return this.nftData.hideAttr || this.needActivate
+ }
+
attr(key: string) {
return this.nftData.attrMap.get(key)
}