diff --git a/package.json b/package.json index 83b36be..6daa89a 100644 --- a/package.json +++ b/package.json @@ -39,6 +39,7 @@ "bmp-js": "^0.1.0", "lodash.clonedeep": "^4.5.0", "marked": "^5.1.0", + "pinia": "^2.1.7", "vue": "^3.2.47", "vue-router": "^4.2.2" }, diff --git a/src/components/MakeAWish.vue b/src/components/MakeAWish.vue index bd704c5..b2a6b4a 100644 --- a/src/components/MakeAWish.vue +++ b/src/components/MakeAWish.vue @@ -16,11 +16,13 @@ import { computed } from 'vue' import { useRoute } from 'vue-router' import { useI18n } from '@/composables/useI18n' +import { useInfoStore } from '@/stores/info' const route = useRoute() const { t } = useI18n() +const infoStore = useInfoStore() -const mailToUrl = computed(() => `mailto:wish@konghq.com?subject=${t('wish.subject', { title: `${route.meta.title} | Kong Manager OSS` })}`) +const mailToUrl = computed(() => `mailto:wish@konghq.com?subject=${t('wish.subject', { title: `${route.meta.title} | Kong Manager OSS@${infoStore.kongVersion}` })}`)