cleaned up

This commit is contained in:
2023-05-08 11:14:44 +10:00
parent 5fffa97ea7
commit 0b8a2904ec

View File

@@ -1,11 +1,5 @@
<template> <template>
<form class="SMForm" @submit.prevent="handleSubmit"> <form class="form" @submit.prevent="handleSubmit">
<!-- <SMMessage
v-if="props.modelValue._message.length > 0"
:message="props.modelValue._message"
:type="props.modelValue._messageType"
:icon="props.modelValue._messageIcon" /> -->
<slot></slot> <slot></slot>
</form> </form>
</template> </template>
@@ -36,7 +30,7 @@ provide("form", props.modelValue);
</script> </script>
<style lang="scss"> <style lang="scss">
.SMForm { .form {
width: 100%; width: 100%;
} }
</style> </style>