feat: 添加滑块示例

This commit is contained in:
xiaoxian521
2024-12-19 17:29:45 +08:00
parent f8690a0b73
commit bbdd44a917
24 changed files with 375 additions and 16 deletions

View File

@@ -1,4 +1,4 @@
<script lang="ts" setup>
<script setup lang="ts">
import { computed, nextTick, ref, toRef, watch } from "vue";
import { TransitionPresets, executeTransition } from "@vueuse/core";
import {

View File

@@ -1,4 +1,4 @@
<script lang="ts" setup>
<script setup lang="ts">
defineProps({
name: {
type: String,

View File

@@ -1,4 +1,4 @@
<script lang="ts" setup>
<script setup lang="ts">
import "@vue-flow/core/dist/style.css";
import "@vue-flow/core/dist/theme-default.css";
import Icon from "./icon.vue";

View File

@@ -1,4 +1,4 @@
<script lang="ts" setup>
<script setup lang="ts">
import { toRef } from "vue";
import { Handle, useHandleConnections } from "@vue-flow/core";