17 lines
231 B
Vue
17 lines
231 B
Vue
<template lang="html">
|
|
<icon-search/>
|
|
</template>
|
|
|
|
<script>
|
|
import IconSearch from '/imports/ui/components/IconSearch.vue';
|
|
|
|
export default {
|
|
components: {
|
|
IconSearch,
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style lang="css" scoped>
|
|
</style>
|