New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@ruleenginejs/ruleengine-ui

Package Overview
Dependencies
Maintainers
1
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ruleenginejs/ruleengine-ui

Vue3.0 Component Library for VS Code

latest
Source
npmnpm
Version
1.1.10
Version published
Maintainers
1
Created
Source

ruleengine-ui npm version

Vue 3.0 based component library for developers of custom editors in Visual Studio Code.

Live Demo

Installation

npm

npm install @ruleenginejs/ruleengine-ui

Add codicons (optional)

npm install @vscode/codicons

In your code

import "@vscode/codicons/dist/codicon.css"

Usage

import { createApp } from 'vue'
import App from './App.vue'
import RuleEngineUI from "@ruleenginejs/ruleengine-ui"
// Add css styles
import "@ruleenginejs/ruleengine-ui/dist/normalize.css"
import "@ruleenginejs/ruleengine-ui/dist/style.css"
import "@ruleenginejs/ruleengine-ui/dist/dark.theme.css"

const app = createApp(App)

app.use(RuleEngineUI)

app.mount('#app')

In your templates

<v-action-bar>
  <v-action @click="onClick">
    <v-icon-play />
  </v-action>
</v-action-bar>

Documentation

Read the documentation and demos.

Components

Basic

Form

Data

Navigation

Graph

Others

License

Licensed under the MIT License.

FAQs

Package last updated on 14 Dec 2021

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