mirror of
https://github.com/jeecgboot/JeecgBoot.git
synced 2026-02-06 02:25:30 +08:00
33 lines
601 B
Java
33 lines
601 B
Java
<template>
|
|
<a-card :bordered="false">
|
|
|
|
<a-tabs>
|
|
<a-tab-pane tab="基础示例" key="1" forceRender>
|
|
<j-vxe-demo1/>
|
|
</a-tab-pane>
|
|
|
|
<a-tab-pane tab="高级示例" key="2" forceRender>
|
|
<j-vxe-demo2/>
|
|
</a-tab-pane>
|
|
|
|
</a-tabs>
|
|
</a-card>
|
|
</template>
|
|
|
|
<script>
|
|
import JVxeDemo1 from '@views/jeecg/JVxeDemo/JVxeDemo1'
|
|
import JVxeDemo2 from '@views/jeecg/JVxeDemo/JVxeDemo2'
|
|
|
|
export default {
|
|
name: 'JVXETableDemo',
|
|
components: {JVxeDemo2, JVxeDemo1},
|
|
data() {
|
|
return {}
|
|
},
|
|
methods: {},
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
|
|
</style> |