mirror of
https://github.com/pipipi-pikachu/PPTist.git
synced 2025-04-15 02:20:00 +08:00
fix: 删除形状替换中的任意多边形
This commit is contained in:
parent
a214f3c604
commit
3b35e740cc
@ -7,13 +7,15 @@
|
||||
<div class="shape-pool">
|
||||
<div class="category" v-for="item in SHAPE_LIST" :key="item.type">
|
||||
<div class="shape-list">
|
||||
<ShapeItemThumbnail
|
||||
class="shape-item"
|
||||
v-for="(shape, index) in item.children"
|
||||
:key="index"
|
||||
:shape="shape"
|
||||
@click="changeShape(shape)"
|
||||
/>
|
||||
<template v-for="(shape, index) in item.children">
|
||||
<ShapeItemThumbnail
|
||||
class="shape-item"
|
||||
:key="index"
|
||||
:shape="shape"
|
||||
@click="changeShape(shape)"
|
||||
v-if="shape.title !== '任意多边形'"
|
||||
/>
|
||||
</template>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
Loading…
x
Reference in New Issue
Block a user