1234567891011121314151617181920 |
- <template>
- <oaSearchInput />
- </template>
- <script>
- import oaSearchInput from '../../oa/fullsearch/oa-search-input.vue'
- import components from './_import-components/ext-header-tools-before-import'
- export default {
- name: 'ExtHeaderToolsBefore',
- components: { ...components, oaSearchInput },
- data() {
- return {}
- },
- methods: {},
- }
- </script>
- <style module lang="scss">
- @use '@/common/design' as *;
- </style>
|