We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7366730 commit 8ca3945Copy full SHA for 8ca3945
src/App.vue
@@ -51,7 +51,7 @@ export default {
51
52
return {
53
link: [{rel: 'canonical',
54
- content: `${baseURL}/${suffix}`}]
+ href: `${baseURL}/${suffix}`}]
55
}
56
57
src/views/CVERecord/CVERecord.vue
@@ -138,7 +138,10 @@ export default {
138
},
139
head() {
140
const cveId = this.$route.query.id;
141
- return {title: `CVE Record: ${cveId}`}
+ return {
142
+ title: `CVE Record: ${cveId}`,
143
+ description: `Vulnerability Detail for ${cveId}`
144
+ }
145
146
watch: {
147
$route(to) {
0 commit comments