Skip to content

Commit

Permalink
feat: 样式设置添加文字大小控制面板
Browse files Browse the repository at this point in the history
  • Loading branch information
jy03078959 committed Mar 20, 2020
1 parent 230d39d commit 3582df7
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/components/style/Base.vue
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,9 @@
</el-form-item>
</el-form>
</el-collapse-item>
<el-collapse-item title="文字样式" name="text">
<editor-text :info="info"></editor-text>
</el-collapse-item>
</el-collapse>
</div>
</template>
Expand Down Expand Up @@ -120,18 +123,20 @@
</style>

<script type="text/ecmascript-6">
import BaseComponent from 'src/extend/BaseComponent'
import EditorBackground from './Background'
import Align from './Align'
import Num from './Num'
import EditorPosition from './Position'
import EditorText from './Text'
import {isNullOrUndefined} from '../../assets/js/common'
export default {
mixins: [BaseComponent],
name: 'BaseStyleEditor',
components: {Num, EditorBackground, Align, EditorPosition},
components: {Num, EditorBackground, Align, EditorPosition, EditorText},
props: {
info: {
required: true,
Expand Down

0 comments on commit 3582df7

Please sign in to comment.