floranet/src/components/ui/Chat.vue

20 lines
391 B
Vue

<script>
import { defineComponent } from "vue";
import IconChat from "../icons/IconChat.vue";
export default defineComponent({
name: "chat-component",
components: { IconChat },
setup() {
const handleClick = () => {};
return { handleClick };
},
});
</script>
<template>
<q-btn flat @click="handleClick"><IconChat /></q-btn>
</template>
<style lang="scss" scoped></style>