Update BasicDoc.vue
parent
eb397f9da6
commit
1bb4f67536
|
@ -2,12 +2,8 @@
|
||||||
<DocSectionText v-bind="$attrs">
|
<DocSectionText v-bind="$attrs">
|
||||||
<p>Label of the tag is defined with the <i>value</i> property.</p>
|
<p>Label of the tag is defined with the <i>value</i> property.</p>
|
||||||
</DocSectionText>
|
</DocSectionText>
|
||||||
<div class="card">
|
<div class="card flex justify-content-center">
|
||||||
<Stepper>
|
<Tag value="New"></Tag>
|
||||||
<StepperPanel header="Header 1">Content 1</StepperPanel>
|
|
||||||
<StepperPanel header="Header 2">Content 2</StepperPanel>
|
|
||||||
<StepperPanel header="Header 3">Content 3</StepperPanel>
|
|
||||||
</Stepper>
|
|
||||||
</div>
|
</div>
|
||||||
<DocSectionCode :code="code" />
|
<DocSectionCode :code="code" />
|
||||||
</template>
|
</template>
|
||||||
|
@ -22,7 +18,7 @@ export default {
|
||||||
`,
|
`,
|
||||||
options: `
|
options: `
|
||||||
<template>
|
<template>
|
||||||
<div class="flex justify-content-center">
|
<div class="card flex justify-content-center">
|
||||||
<Tag value="New"></Tag>
|
<Tag value="New"></Tag>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
@ -33,7 +29,7 @@ export default {
|
||||||
`,
|
`,
|
||||||
composition: `
|
composition: `
|
||||||
<template>
|
<template>
|
||||||
<div class="flex justify-content-center">
|
<div class="card flex justify-content-center">
|
||||||
<Tag value="New"></Tag>
|
<Tag value="New"></Tag>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
Loading…
Reference in New Issue