fix: 文字描述错误修正

This commit is contained in:
pipipi-pikachu 2021-02-24 14:44:40 +08:00
parent b8484870c5
commit 7735f7767d

View File

@ -5,12 +5,12 @@
style="flex: 1;" style="flex: 1;"
:checked="flip.x === 180" :checked="flip.x === 180"
@click="updateFlip({ x: flip.x === 180 ? 0 : 180, y: flip.y })" @click="updateFlip({ x: flip.x === 180 ? 0 : 180, y: flip.y })"
><IconFlipVertically /> 水平翻转</CheckboxButton> ><IconFlipVertically /> 垂直翻转</CheckboxButton>
<CheckboxButton <CheckboxButton
style="flex: 1;" style="flex: 1;"
:checked="flip.y === 180" :checked="flip.y === 180"
@click="updateFlip({ x: flip.x, y: flip.y === 180 ? 0 : 180 })" @click="updateFlip({ x: flip.x, y: flip.y === 180 ? 0 : 180 })"
><IconFlipHorizontally /> 垂直翻转</CheckboxButton> ><IconFlipHorizontally /> 水平翻转</CheckboxButton>
</CheckboxButtonGroup> </CheckboxButtonGroup>
</div> </div>
</template> </template>