Socket
Book a DemoInstallSign in
Socket

vue-tree-view

Package Overview
Dependencies
Maintainers
1
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vue-tree-view

1.5.0
latest
Source
npmnpm
Version published
Weekly downloads
100
-54.34%
Maintainers
1
Weekly downloads
 
Created
Source

Vue tree view

A tree view component for Vue 3.

🚀 Installation

Install using your package manager of choice:

yarn add vue-tree-view

📺 Demo

https://matija-components.vercel.app/tree-view

⚙️ Usage

Import the component locally or define it globally and include the css file:

<template>
  <div style="display: flex">
    <tree-view
      color="blue"
      :items="treeViewItems"
      v-model="treeViewSelection"
      dense
      open-all
    />
    {{ treeViewSelection.sort() }}
  </div>
</template>

<script lang="ts" setup>
import { ref } from "vue";
import { TreeView } from "vue-tree-view";
import "vue-tree-view/dist/style.css";

const treeViewItems = [
  {
    id: 1,
    name: "ID 1",
    children: [
      { id: 2, name: "ID 2" },
      { id: 3, name: "ID 3" },
      { id: 4, name: "ID 4" }
    ]
  },
  {
    id: 5,
    name: "ID 5",
    children: [
      {
        id: 6,
        name: "ID 6",
        children: [
          {
            id: 7,
            name: "ID 7",
            children: [
              { id: 8, name: "ID 8" },
              { id: 9, name: "ID 9" }
            ]
          }
        ]
      },
      {
        id: 10,
        name: "ID 10",
        children: [
          {
            id: 11,
            name: "ID 11",
            children: [
              { id: 12, name: "ID 12" },
              { id: 13, name: "ID 13" },
              { id: 14, name: "ID 14" }
            ]
          }
        ]
      }
    ]
  }
];

const treeViewSelection = ref([]);
</script>

📃 Props

NameTypeDefaultDescription
v-modelnumber[]Standard two way input
densebooleanfalseChanges the style of the component to a more compact design
open-allbooleanfalseAll nodes will be opened on component load
disabledbooleanfalseMakes the component uninteractable
selectablebooleantrueAllows the user to select nodes
radiobooleanfalseAlternate selection item, uses a radio instead of the default checkbox
unopenablebooleanfalsePrevents the user from opening and closing the nodes
selection-modeindependent or leafleafChanges the way selection is handled, leaf selects all of the children if clicking on a parent, independent selects a node without triggering any others
colorstring#7e7ec2Color of the active checkboxes
itemsNodeItem[]Items used by the tree view, every item must be defined with an id for a value and name for a label, the children property is optional

Keywords

tree-view

FAQs

Package last updated on 25 Apr 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.