update(script-setup): Refactor remaining files to script setup style
This commit is contained in:
20
examples/Superflow/Superflow.vue
Normal file
20
examples/Superflow/Superflow.vue
Normal 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>
|
||||
@@ -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,
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user