We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e85bbd5 commit 677f24bCopy full SHA for 677f24b
packages/docs/src/pages/IndexPage.vue
@@ -104,9 +104,14 @@ export default {
104
<script setup lang="ts">
105
import { ref, watch } from 'vue'
106
import FeatureCard from '../components/FeatureCard.vue'
107
-import { useQuasar } from 'quasar'
+import { useQuasar, useMeta } from 'quasar'
108
109
const $q = useQuasar()
110
+useMeta(() => ({
111
+ link: {
112
+ material: { rel: 'canonical', href: window?.location.origin }
113
+ }
114
+}))
115
116
const lang = ref($q.lang.isoName)
117
watch($q.lang, (newVal) => {
0 commit comments