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

Dont Want Icons

Open hamzaafzal9009 opened this issue 5 years ago • 6 comments

Is there any way to hide icons and place text instead of icon?

hamzaafzal9009 avatar Dec 04 '19 20:12 hamzaafzal9009

You can set icon to nothing, and it'll place the step number in it. <tab-content title="Selection" icon=""> image

Or you can replace the entire step markup:

      <template slot="step" scope="props">
        Testing
      </template>

if doing this take note there are some scoped props you can use; see: https://binarcode.github.io/vue-form-wizard/#/?id=step-slot

The base template uses the wizard-step component:

<template slot="step" scope="props">
        <wizard-step :tab="props.tab"
        :transition="props.transition"
        :index="props.index">
        </wizard-step>
</template>

SlyDave avatar Jan 21 '20 09:01 SlyDave

@hamzaafzal9009 have you found any solution ?

avambro avatar Mar 31 '20 23:03 avambro

For icons use background image for both wizard-icon-circle and wizard-icon-container to include the icon in. I used svg icon and it worked.

dohahelmy avatar Apr 21 '20 03:04 dohahelmy

For icons use background image for both wizard-icon-circle and wizard-icon-container to include the icon in. I used svg icon and it worked.

did you mean the css?

duongtdvn avatar Apr 25 '20 00:04 duongtdvn

did you mean the css?

Yes. apply new CSS styles and it will solve the problem

dohahelmy avatar Apr 26 '20 08:04 dohahelmy

wizard-icon-circle

@duongtdvn could you please share the code or repo.

mathipa avatar Jun 14 '22 12:06 mathipa