566 B
566 B
#### Flex ๆๅบ
ไปๅ ๅ ๅฐๆฐดๅนณๆๅใ
้่ฟ Flex ๅธๅฑ็ Order ๆฅๆนๅๅ
็ด ็ๆๅบใ
#### Flex Order
To change the element sort by Flex layout order.
<template>
<div>
<a-row type="flex">
<a-col :span="6" :order="4">
1 col-order-4
</a-col>
<a-col :span="6" :order="3">
2 col-order-3
</a-col>
<a-col :span="6" :order="2">
3 col-order-2
</a-col>
<a-col :span="6" :order="1">
4 col-order-1
</a-col>
</a-row>
</div>
</template>