681 B
681 B
Examples
Simple walkthroughs to accomplish common tasks or patterns with WXT.
<script lang="ts" setup> import { ref, onMounted } from 'vue'; const examples = ref() onMounted(async () => { const res = await fetch("https://raw.githubusercontent.com/wxt-dev/wxt-examples/main/examples.json"); examples.value = await res.json(); }) </script>- Loading...
- {{ example.name }}
Full code available at
wxt-dev/wxt-examples