Remove leftover comments from form-dialog

This commit is contained in:
Norm 2022-07-20 18:17:24 -04:00
parent d29a0dad8f
commit 929203b2f3

View file

@ -55,6 +55,7 @@
</template>
<script lang="ts" setup>
import { } from 'vue';
import FormInput from './form/input.vue';
import FormTextarea from './form/textarea.vue';
import FormSwitch from './form/switch.vue';
@ -94,25 +95,6 @@ function cancel(): void {
for (const item in props.form) {
values[item] = props.form[item].default ?? null;
}
// export default defineComponent({
// components: {
// XModalWindow,
// FormInput,
// FormTextarea,
// FormSwitch,
// FormSelect,
// FormRange,
// MkButton,
// FormRadios,
// },
// created() {
// for (const item in this.form) {
// this.values[item] = this.form[item].default ?? null;
// }
// },
// });
</script>
<style lang="scss" scoped>