2021-09-23 09:35:06 +00:00
|
|
|
<template>
|
|
|
|
<div id="app">
|
2021-12-22 10:27:18 +00:00
|
|
|
<VFormDesigner>
|
|
|
|
<!-- 自定义按钮插槽演示 -->
|
|
|
|
<template #customToolButtons>
|
|
|
|
<el-button type="text">test</el-button>
|
|
|
|
</template>
|
|
|
|
</VFormDesigner>
|
2021-09-23 09:35:06 +00:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import VFormDesigner from './components/form-designer/index.vue'
|
|
|
|
|
|
|
|
export default {
|
|
|
|
name: 'App',
|
|
|
|
components: {
|
|
|
|
VFormDesigner,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss">
|
|
|
|
#app {
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
</style>
|