forked from FoundKeyGang/FoundKey
Remove leftover comments from form-dialog
This commit is contained in:
parent
d29a0dad8f
commit
929203b2f3
1 changed files with 1 additions and 19 deletions
|
@ -55,6 +55,7 @@
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script lang="ts" setup>
|
<script lang="ts" setup>
|
||||||
|
import { } from 'vue';
|
||||||
import FormInput from './form/input.vue';
|
import FormInput from './form/input.vue';
|
||||||
import FormTextarea from './form/textarea.vue';
|
import FormTextarea from './form/textarea.vue';
|
||||||
import FormSwitch from './form/switch.vue';
|
import FormSwitch from './form/switch.vue';
|
||||||
|
@ -94,25 +95,6 @@ function cancel(): void {
|
||||||
for (const item in props.form) {
|
for (const item in props.form) {
|
||||||
values[item] = props.form[item].default ?? null;
|
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>
|
</script>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
|
|
Loading…
Reference in a new issue