|
|
@@ -58,6 +58,10 @@ cutout(){
|
|
|
style="width:200px"
|
|
|
/>
|
|
|
</div>
|
|
|
+ <div v-if="clipSettings.shape === 'svg'" class="flex left" style="margin-left:10px">
|
|
|
+ <el-input-number v-model="clipSettings.svgWidth" @input="applyClipPath" :step="1" :min="1" size="small" style="width:80px"/>
|
|
|
+ <el-input-number v-model="clipSettings.svgHeight" @input="applyClipPath" :step="1" :min="1" size="small" style="width:80px"/>
|
|
|
+ </div>
|
|
|
<!-- 矩形参数 -->
|
|
|
<div v-if="clipSettings.shape === 'rect'" class="flex left" style="margin-left:10px">
|
|
|
<el-input-number v-model="clipSettings.width" @input="applyClipPath" :step="1" :min="1" size="small" style="width:80px"/>
|