feat: BULL-1474 Added links to product documentation and release notes
To Test add these in the import statements:
import test1 from "@/components/IronBank/ServiceCatalog/Build.vue";
import test2 from "@/components/IronBank/ServiceCatalog/Containerization.vue";
import test3 from "@/components/IronBank/ServiceCatalog/UnitTest.vue";
import test4 from "@/components/IronBank/ServiceCatalog/ContinuousDelivery.vue";
put this in the components section:
test1,
test2,
test3,
test4
Put this in the data section:
showTest1: false,
showTest2: false,
showTest3: false,
showTest4: false,
insert this somewhere inside the HTML:
<v-btn
color="primary"
class="my-6"
@click.stop="showTest1 = true"
>
Test 1
</v-btn>
<test1 v-model="showTest1" />
<v-btn
color="primary"
class="my-6"
@click.stop="showTest2 = true"
>
Test 2
</v-btn>
<test2 v-model="showTest2" />
<v-btn
color="primary"
class="my-6"
@click.stop="showTest3 = true"
>
Test 3
</v-btn>
<test3 v-model="showTest3" />
<v-btn
color="primary"
class="my-6"
@click.stop="showTest4 = true"
>
Test 4
</v-btn>
<test4 v-model="showTest4" />
Edited by hunter.congress