WebApp【公共组件库】@前端(For Git Submodule)
Tevin
2024-05-16 bc8f7123657eb2dde8a328928140c94ea0cc3d29
forms/form/CFormSubmit.vue
@@ -1,17 +1,32 @@
/**
 * CFormSubmit - 表单套装组件,提交按钮
 * @author Tevin
 */
<template>
    <view class="c-form-submit">
        <button
            form-type="submit"
            type="primary"
        >
            <slot>提交</slot>
        </button>
    <view
        class="c-form-submit"
        :class="fixed ? 'c-form-submit-fixed':''"
    >
        <view class="c-form-submit-inner">
            <button
                form-type="submit"
                type="primary"
            >
                <slot>提交</slot>
            </button>
        </view>
    </view>
</template>
<script>
export default {
    name: 'CFormSubmit',
    props: {},
    props: {
        fixed: {
            type: Boolean,
            default: false,
        },
    },
};
</script>