mirror of
https://github.com/thelounge/thelounge
synced 2025-02-17 05:38:25 +00:00
22 lines
374 B
Vue
22 lines
374 B
Vue
<template>
|
|
<button
|
|
v-if="link.canDisplay"
|
|
@click="onClick"
|
|
:class="['toggle-button', 'toggle-preview', { opened: link.shown }]"/>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: "LinkPreviewToggle",
|
|
props: {
|
|
link: Object,
|
|
},
|
|
methods: {
|
|
onClick: function() {
|
|
this.link.shown = !this.link.shown;
|
|
|
|
this.$parent.$emit("linkPreviewToggle");
|
|
}
|
|
}
|
|
};
|
|
</script>
|