Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Save more on your purchases! discount-offer-chevron-icon
Savings automatically calculated. No voucher code required.
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletter Hub
Free Learning
Arrow right icon
timer SALE ENDS IN
0 Days
:
00 Hours
:
00 Minutes
:
00 Seconds

First one sohdfio h isohfo i siudfh usd isuhdfhish

Save for later
  • 60 min read
  • 2023-05-31 04:41:59

article-image

this is code block example
 

Unlock access to the largest independent learning library in Tech for FREE!
Get unlimited access to 7500+ expert-authored eBooks and video courses covering every tech area you can think of.
Renews at $15.99/month. Cancel anytime
<div class="col-4 d-flex justify-content-center" v-if="!setDetails?.is_index_page_published">
    <div class="bg-light border p-3">
        <h6 class="font-weight-bold">
            Index Page:
            <template v-if="!setDetails?.is_add_index_page">
                Currently, index page is not selected.
            </template>
            <template v-else-if="!setDetails?.is_index_page_published">
                index page is not live yet
            </template>
            <b-button
                variant="primary"
                v-if="setDetails?.is_add_index_page"
                @click="showPublishIndexPageConfirmation = true"
            >
                Publish
            </b-button>
            <b-button
                variant="primary"
                v-else-if="!setDetails?.is_add_index_page"
                @click="redirectToLabRecipes"
                >Go Back and Change</b-button
            >
        </h6>
    </div>
</div>