fix reference on cards

This commit is contained in:
André Weller
2019-05-14 23:41:17 +02:00
parent 359fe8f078
commit 51bdad002d

View File

@@ -1,5 +1,5 @@
<template lang="pug"> <template lang="pug">
.card(:class="checkReference") .card(:class="checkReference()")
//- a.card--link(:href="url" :target='title' rel='noreferrer') //- a.card--link(:href="url" :target='title' rel='noreferrer')
p.card--title {{title}} p.card--title {{title}}
p.card--description {{desc}} p.card--description {{desc}}
@@ -17,7 +17,10 @@ export default {
isReferenced: false, isReferenced: false,
} }
}, },
computed: { methods:{
createCopyUrl() {
this.$router.push(`${this.$router.history.current.path}#${this.$props.title.replace(/ /g, '').toLowerCase()}`)
},
checkReference(){ checkReference(){
if(typeof this.$route.hash !== undefined) { if(typeof this.$route.hash !== undefined) {
const query = this.$route.hash.substring(1); const query = this.$route.hash.substring(1);
@@ -29,10 +32,8 @@ export default {
} }
}, },
}, },
methods:{ mounted() {
createCopyUrl() { this.checkReference()
this.$router.push(`${this.$router.history.current.path}#${this.$props.title.replace(/ /g, '').toLowerCase()}`)
}
}, },
} }
</script> </script>