sxh-tree-test
v0.1.45
Published
基于vue3的树形组件
Downloads
11
Readme
vue-tree
Usage
<template>
<vue-tree :model="mockData"></vue-tree>
</template>
<script lang="ts" setup>
import { getTreeData, VueTree } from "sailing-vuetree";
import type {
ITreeNodeInstance,
TreeNodeData,
} from "sailing-vuetree/lib/typings";
const mockTree: Array<TreeNodeData> = [
{
name: "Node 1",
id: 1,
pid: 0,
children: [
{
name: "Node 1-2",
id: 2,
pid: 1,
},
],
},
{
name: "Node 2",
id: 3,
pid: 0,
disabled: true,
},
{
name: "Node 3",
id: 4,
pid: 0,
},
];
const treeInstance: ITreeNodeInstance = getTreeData(mockTree);
const mockData = reactive(treeInstance);
</script>
API
Installation
npm install vue-tree
Project setup
pnpm install
Compiles and hot-reloads for development
pnpm run serve
Compiles and minifies for production
pnpm run build
Lints and fixes files
pnpm run lint
Customize configuration
Update the API section of README.md with generated documentation
npm run doc:build
Run style guide dev server
npm run styleguide
Generate a static HTML style guide
npm run styleguide:build