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

@ruleenginejs/ui

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ruleenginejs/ui

Vue3.0 Component Library for VS Code

latest
Source
npmnpm
Version
1.2.5
Version published
Weekly downloads
0
-100%
Maintainers
1
Weekly downloads
 
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/ui

Add icons (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/ui';
// Add css styles
import '@ruleenginejs/ui/dist/normalize.css';
import '@ruleenginejs/ui/dist/style.css';
import '@ruleenginejs/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

API Reference

Read the api reference for props, events, slots.

License

Licensed under the MIT License.

Keywords

ruleengine

FAQs

Package last updated on 12 Sep 2022

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