Skip to content

Commit

Permalink
Added a minimal test custom directive
Browse files Browse the repository at this point in the history
  • Loading branch information
Bahul Neel Upadhyaya committed Oct 1, 2024
1 parent 976c864 commit 0ac8a15
Show file tree
Hide file tree
Showing 5 changed files with 14,330 additions and 6 deletions.
5 changes: 3 additions & 2 deletions examples/showcase/components/CustomComponent.vue
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,10 @@ function onClick() {
</script>

<template>
<div class="storybook sb-column">
<div v-test="test" class="storybook sb-column">
<button :class="classes" :style="style" @click="onClick">
{{ label }} <slot />
{{ label }}
<slot />
</button>
</div>
</template>
6 changes: 5 additions & 1 deletion examples/showcase/nuxt.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,11 @@ export default defineNuxtConfig({
port: 3000,
},
},

vite: {
optimizeDeps: {
include: ['jsdoc-type-pratt-parser'],
},
},
vue: {
runtimeCompiler: true,
},
Expand Down
Loading

0 comments on commit 0ac8a15

Please sign in to comment.