28 lines
470 B
Vue
28 lines
470 B
Vue
<script setup>
|
|
// import Checkbox from '#/components/form/checkbox.vue';
|
|
</script>
|
|
|
|
<template>
|
|
<div class="dialog-section">
|
|
<div class="setting">
|
|
Combine e-mail alerts
|
|
<select
|
|
class="input"
|
|
>
|
|
<option>Never</option>
|
|
<option>Daily</option>
|
|
<option>Weekly</option>
|
|
<option>Monthly</option>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.setting {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
</style>
|