Skip to content

vue-clip-track专业级视频轨道编辑组件

基于 Vue 3 的高性能、可扩展的时间轴编辑器

vue-clip-track

快速体验

bash
# 安装
pnpm add vue-clip-track

# 或使用 npm
npm install vue-clip-track
vue
<template>
  <VideoTrack
    :track-types="trackTypes"
    :enable-snap="true"
    @clip-select="handleSelect"
  />
</template>

<script setup>
import { VideoTrack } from 'vue-clip-track'
import 'vue-clip-track/style.css'
</script>

Released under the MIT License.