Files
wxt/docs/examples.md
T
2023-11-05 11:35:59 -06:00

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>

Full code available at wxt-dev/wxt-examples