ESC
Components > Font Selector
YourSampleComponent.vue
1import { FontSelector } from "@/components/app-components";
Explore the wonders of our Font Picker component! 🎉 Select from an impressive collection of +4300 font families, each showcased in its unique style. With the user-friendly Font Picker component in Nuxt Starter AI, users can easily choose the perfect font by viewing all the options rendered in the font itself

Here's an example of how to use the component: (it's easy and practical 🙂)
components/YoueSampleComponent.vue
1
2 <template>
3 ...
4 <AppFontSelector v-model="selectedFont" />
5 ...
6 <template />
7
8 <script lang="tsx" setup>
9 import { ref } from "vue";
10
11 const selectedFont = ref('');
12
13 watch(() => selectedFont.value, (fontFamily) => {
14 document.head.insertAdjacentHTML(
15 "beforeend",
16 "<style>@import url('https://fonts.googleapis.com/css?family=" + fontFamily + "');</style>"
17 );
18 var font = new FontFaceObserver(fontFamily);
19 font.load().then(() => {
20 const fontElement = document.getElementById("font-display");
21 if (fontElement != null) {
22 fontElement.style.fontFamily = fontFamily;
23 }
24 });
25 });
26
27 </script>
28 <style>
29 </style>
30
All the properties of the component are typed using TypeScript, so you're in good hands 🙂