You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
< docs >
-- -
order : 9
title :
zh - CN : 可点击
en - US : Clickable
-- -
# # zh - CN
设置 ` v-model ` 后 , Steps 变为可点击状态 。
# # en - US
Setting ` v-model ` makes Steps clickable .
< / docs >
< template >
< div >
< a -steps
v -model :current ="current"
: items = "[
{
title: 'Step 1',
description,
},
{
title: 'Step 2',
description,
},
{
title: 'Step 3',
description,
},
]"
> < / a - s t e p s >
< a -divider / >
< a -steps
v -model :current ="current"
direction = "vertical"
: items = "[
{
title: 'Step 1',
description,
},
{
title: 'Step 2',
description,
},
{
title: 'Step 3',
description,
},
]"
> < / a - s t e p s >
< / div >
< / template >
< script lang = "ts" setup >
import { ref } from 'vue' ;
const current = ref < number > ( 0 ) ;
const description = 'This is a description.' ;
< / script >