scinote-web/app/views/design_elements/_modals.html.erb

17 lines
422 B
Plaintext
Raw Normal View History

2024-01-20 03:33:34 +08:00
<div>
<h1>Modals</h1>
<div id="modals" class="flex items-center gap-4 flex-wrap mt-6">
<button @click="showWizard = true" class="btn btn-primary">Show Wizard Modal</button>
<wizard-modal
v-if="showWizard"
@close="showWizard = false"
@alert="fireAlert"
:params="wizardParams"
:config="wizardConfig"
/>
</div>
</div>
<%= javascript_include_tag 'vue_design_system_modals' %>