Apply Alert on news post

This commit is contained in:
samaradel
2021-08-04 14:38:55 +02:00
parent 28e1b66cf0
commit 0d8163aa38

View File

@@ -2,6 +2,8 @@
<Layout :hideHeader="true" :disableScroll="true">
<div class="container sm:pxi-0 mx-auto overflow-x-hidden pt-20 px-4">
<div class="pt-8">
<Alert v-if="showAlert" @clicked="linkCopied" />
<section class="post-header container mx-auto px-0 mb-4 border-b">
<h1 class="text-5xl font-medium leading-none mt-0">
{{ $page.news.title }}
@@ -208,10 +210,19 @@
<script>
import PostListItem from "~/components/custom/Cards/PostListItem.vue";
import Alert from "~/components/custom/Alert.vue";
export default {
components: {
PostListItem,
Alert,
},
data() {
return {
showAlert: false,
};
},
metaInfo() {
return {
title: "",
@@ -263,6 +274,10 @@ export default {
el.select();
document.execCommand("copy");
document.body.removeChild(el);
this.showAlert = true;
},
linkCopied(val) {
this.showAlert = val;
},
},
};