vue-form-wizard icon indicating copy to clipboard operation
vue-form-wizard copied to clipboard

Need to replace footer and header with custom layout

Open rashadrivera opened this issue 5 years ago • 1 comments

Hello Sir or Ma'am,

Perhaps this is already a feature. If so, then this is not an issue. If not, then consider the following a feature request.

I need to replace the back, next and finish buttons with new UI elements. In one case, I want the buttons to be replaced with anchors (A). In another use case, I need to move the buttons from the footer to the header. I expected this to be possible via "slots" but I'm not seeing a code example on GitHub.

rashadrivera avatar Jan 17 '20 22:01 rashadrivera

See https://binarcode.github.io/vue-form-wizard/#/?id=slots for the header

            <template slot="title">
                <div>
                    HELLO
                </div>
            </template>

and take note of the special requirements for replacing the footer: https://binarcode.github.io/vue-form-wizard/#/?id=footer-slot

SlyDave avatar Jan 20 '20 17:01 SlyDave