* if options are passed to useVueFlow, we want to merge them with possibly passed props * renamed flowStore to stateStore * fix examples * add store prop to pass an already existing store to flow Signed-off-by: Braks <78412429+bcakmakoglu@users.noreply.github.com>
24 lines
533 B
Vue
24 lines
533 B
Vue
<script lang="ts" setup>
|
|
import { Handle, NodeProps, Position } from '~/index'
|
|
|
|
interface RBGOutputNodeProps extends NodeProps {
|
|
rgb: string
|
|
}
|
|
|
|
const props = defineProps<RBGOutputNodeProps>()
|
|
</script>
|
|
<template>
|
|
<div :style="{ backgroundColor: props.rgb }" class="rgb-output-node">
|
|
<div class="text-md uppercase">{{ props.rgb }}</div>
|
|
<Handle type="target" :position="Position.Left" />
|
|
</div>
|
|
</template>
|
|
<style>
|
|
.rgb-output-node {
|
|
padding: 9px;
|
|
border-radius: 25px;
|
|
text-align: left;
|
|
color: white;
|
|
}
|
|
</style>
|