mirror of
https://gitee.com/hoslay/ddei-editor.git
synced 2025-12-06 17:18:36 +08:00
43 lines
792 B
Vue
43 lines
792 B
Vue
<template>
|
|
<div class="ddei-core-panel-bottom-shapecount">
|
|
{{ editor.i18n('ddei.shapesCount') }} {{ editor?.files[editor?.currentFileIndex]?.modelNumber }}
|
|
</div>
|
|
</template>
|
|
<script lang="ts">
|
|
import {DDeiEditor} from "ddei-framework";
|
|
|
|
export default {
|
|
name: "ddei-core-panel-bottom-shapecount",
|
|
extends: null,
|
|
mixins: [],
|
|
props: {
|
|
//外部传入的插件扩展参数
|
|
options: {
|
|
type: Object,
|
|
default: null
|
|
}
|
|
, editor: {
|
|
type: DDeiEditor,
|
|
default: null,
|
|
}
|
|
},
|
|
data() {
|
|
return {}
|
|
},
|
|
computed: {},
|
|
watch: {},
|
|
created() { },
|
|
mounted() {
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style lang="less" scoped>
|
|
.ddei-core-panel-bottom-shapecount {
|
|
flex: 0 0 100px;
|
|
display: block;
|
|
font-size:15px;
|
|
text-align: center;
|
|
}
|
|
</style>
|