Skip to content

Instantly share code, notes, and snippets.

@cathrinevaage
cathrinevaage / App.vue
Last active April 17, 2024 04:40
Tabs in Vue 3 / Composition API
<!-- Usage -->
<template>
<Tabs>
<Tab name="Foo">Content of tab Foo</Tab>
<Tab name="Bar">Content of tab Bar</Tab>
</Tabs>
</template>
<script>