update(script-setup): Refactor remaining files to script setup style

This commit is contained in:
Braks
2021-10-18 22:39:50 +02:00
parent 9b2f4b7406
commit 560bdc203b
62 changed files with 1683 additions and 1425 deletions

View File

@@ -0,0 +1,20 @@
<script lang="ts" setup>
import { ref } from 'vue'
import Flowy from '~/container/Flow.vue'
import { Elements } from '~/types'
const elements = ref<Elements>([
{ id: '1', type: 'input', data: { label: 'Node 1' }, position: { x: 250, y: 5 } },
{ id: '2', data: { label: 'Node 2' }, position: { x: 100, y: 100 } },
{ id: '3', data: { label: 'Node 3' }, position: { x: 400, y: 100 } },
{ id: '4', data: { label: 'Node 4' }, position: { x: 400, y: 200 } },
{ id: 'e1-2', source: '1', target: '2', animated: true },
{ id: 'e1-3', source: '1', target: '3' },
] as Elements)
</script>
<template>
<Flowy :elements="elements">
<div>Foobar!</div>
</Flowy>
</template>

View File

@@ -3,51 +3,55 @@ import { createRouter, createWebHashHistory, RouterOptions } from 'vue-router'
export const routes: RouterOptions['routes'] = [
{
path: '/',
redirect: '/basic'
redirect: '/basic',
},
{
path: '/basic',
component: () => import('./Basic/Basic.vue')
component: () => import('./Basic/Basic.vue'),
},
{
path: '/custom-connectionline',
component: () => import('./CustomConnectionLine/CustomConnectionLine.vue')
component: () => import('./CustomConnectionLine/CustomConnectionLine.vue'),
},
{
path: '/custom-node',
component: () => import('./CustomNode/CustomNode.vue')
component: () => import('./CustomNode/CustomNode.vue'),
},
{
path: '/drag-n-drop',
component: () => import('./DragNDrop/DnD.vue')
component: () => import('./DragNDrop/DnD.vue'),
},
{
path: '/edges',
component: () => import('./Edges')
component: () => import('./Edges'),
},
{
path: '/button-edge',
component: () => import('./EdgeWithButton/EdgeWithButton.vue')
component: () => import('./EdgeWithButton/EdgeWithButton.vue'),
},
{
path: '/edge-types',
component: () => import('./EdgeTypes')
component: () => import('./EdgeTypes'),
},
{
path: '/empty',
component: () => import('./Empty')
component: () => import('./Empty'),
},
{
path: '/hidden',
component: () => import('./Hidden')
component: () => import('./Hidden'),
},
{
path: '/interaction',
component: () => import('./Interaction')
}
component: () => import('./Interaction'),
},
{
path: '/super-flow',
component: () => import('./Superflow/Superflow.vue'),
},
]
export const router = createRouter({
history: createWebHashHistory(),
routes
routes,
})