mirror of
https://github.com/Ssl1S/json-schema-editor-vue.git
synced 2025-12-30 01:37:55 +08:00
19 lines
395 B
Vue
19 lines
395 B
Vue
<template>
|
|
<div class="json-schema-editor">
|
|
json-schema-editor
|
|
<a-input/>
|
|
<a-button type="primary">测试按钮</a-button>
|
|
<a-icon type="step-backward" />
|
|
</div>
|
|
</template>
|
|
<script>
|
|
import { Button, Input, Icon } from 'ant-design-vue'
|
|
export default {
|
|
name: 'JsonSchemaEditor',
|
|
components: {
|
|
AButton: Button,
|
|
AInput: Input,
|
|
AIcon:Icon
|
|
}
|
|
}
|
|
</script> |