thelounge/client/components/LinkPreviewToggle.vue

22 lines
375 B
Vue

<template>
<button
:class="['toggle-button', 'toggle-preview', { opened: link.shown }]"
@click="onClick" />
</template>
<script>
export default {
name: "LinkPreviewToggle",
props: {
link: Object,
},
methods: {
onClick() {
this.link.shown = !this.link.shown;
this.$parent.$emit("linkPreviewToggle", this.link, this.$parent.message);
},
},
};
</script>