VabQueryFormTopPanel.vue 297 B

1234567891011121314151617181920
  1. <template>
  2. <el-col :span="24">
  3. <div class="top-panel">
  4. <slot></slot>
  5. </div>
  6. </el-col>
  7. </template>
  8. <script>
  9. export default {
  10. name: 'VabQueryFormTopPanel',
  11. props: {},
  12. data() {
  13. return {}
  14. },
  15. created() {},
  16. mounted() {},
  17. methods: {},
  18. }
  19. </script>