Certificate of Analysis Modal: Difference between revisions
Jump to navigation
Jump to search
(Created page with "Return to Programming Guide") |
No edit summary |
||
Line 1: | Line 1: | ||
<strong>TypeScript.</strong> Import and add Boolean variable to show or hide modal: | |||
<pre>import EmailCofAModal from '@/components/EmailCofAModal.vue'; | |||
// ... | |||
@Component({ | |||
name: "OrdersShippingQueue", | |||
components: { | |||
EmailCofAModal, | |||
}, | |||
}) | |||
// ... | |||
private isEmailCofAModalVisible = false;</pre> | |||
<strong>Template:</strong> | |||
<pre><EmailCofAModal | |||
v-model="isEmailCofAModalVisible" | |||
:order-key="orderKey" | |||
/></pre> | |||
Return to [[Programming Guide]] | Return to [[Programming Guide]] |
Latest revision as of 15:05, 10 October 2023
TypeScript. Import and add Boolean variable to show or hide modal:
import EmailCofAModal from '@/components/EmailCofAModal.vue'; // ... @Component({ name: "OrdersShippingQueue", components: { EmailCofAModal, }, }) // ... private isEmailCofAModalVisible = false;
Template:
<EmailCofAModal v-model="isEmailCofAModalVisible" :order-key="orderKey" />
Return to Programming Guide