Skip to content

Commit

Permalink
chore: add kitchensink to sandbox
Browse files Browse the repository at this point in the history
  • Loading branch information
m0ksem committed Apr 26, 2024
1 parent 6bbdafb commit cacb36f
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
3 changes: 3 additions & 0 deletions packages/sandbox/src/app.vue
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,16 @@
<div class="va-chip">
This is not va-chip component, just use .va-chip class. Must be plain text
</div>
<kitchensink />
</template>

<script lang="ts">
import { defineComponent } from 'vue'
import kitchensink from './kitchensink.vue';
export default defineComponent({
name: 'App',
components: { kitchensink },
data () {
return {
value: new Date(),
Expand Down
7 changes: 7 additions & 0 deletions packages/sandbox/src/kitchensink.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<script setup lang="ts">
import KitchenSink from '../../bundlers-tests/templates/src/kitchensink.vue'
</script>

<template>
<KitchenSink />
</template>

0 comments on commit cacb36f

Please sign in to comment.