Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | <template>
<q-page padding>
<q-inner-loading :showing="loading" v-if="loading">
<q-spinner-gears size="90px" color="primary" />
<p class="Loading__Text">{{ message }}</p>
</q-inner-loading>
<available-nft-component
v-else
:eth-network="ethNetwork"
:id="compKey"
:key="compKey"
/>
</q-page>
</template>
<script lang="ts">
import { W3iMixin } from "src/mixins/W3iMixin";
import { Component, Vue, Mixins } from "vue-property-decorator";
Vue.component("available-nft-component", () =>
import("src/components/Shared/AvailableNFT.vue")
);
@Component({
name: "ShowNetworkNFTPage"
})
class ShowNetworkNFTPage extends Mixins(W3iMixin) {
async mounted() {
await this.w3i();
await this.networkCheck();
}
}
export default ShowNetworkNFTPage;
</script>
|