main #1

Merged
davidangel merged 312 commits from vikunja/frontend:main into main 2023-01-26 04:07:52 +00:00
2 changed files with 12 additions and 1 deletions
Showing only changes of commit 35cfb2f3ca - Show all commits

View File

@ -4,7 +4,7 @@ import {reactive} from 'vue'
import {createRouter, createMemoryHistory} from 'vue-router'
import BaseButton from './BaseButton.vue'
function setupApp({ app, story, variant }) {
function setupApp({ app }) {
// Router mock
app.use(createRouter({
history: createMemoryHistory(),

View File

@ -0,0 +1,11 @@
<script lang="ts" setup>
import Card from './card.vue'
</script>
<template>
<Story :layout="{ type: 'grid', width: '200px' }">
<Card>
Card content
</Card>
</Story>
</template>