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

xcrud

Package Overview
Dependencies
Maintainers
2
Versions
55
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

xcrud

A simplified crud component based on element-ui & Vue

latest
Source
npmnpm
Version
0.4.19
Version published
Weekly downloads
317
-54.39%
Maintainers
2
Weekly downloads
 
Created
Source

xcrud GitHub Actions status | GoldSubmarine/xcrud

xcrud 是一个基于 element-ui & Vue 实现快速增删改查的组件,通过 json 配置表单,摆脱繁琐的变量和 html,是开发后台应用的利器。

Documentation

文档风格模仿 element-ui ,参见 文档

Install

npm install xcrud -S
# or
yarn add xcrud

Getting started

import Vue from "vue";
import App from "./App.vue";
import router from "./router";

import Element from "element-ui";
import "element-ui/lib/theme-chalk/index.css";
import Xcrud from "xcrud";
// import Xcrud from "xcrud/package/index.js"; // 源码版,需要配置babel编译Xcrud

Vue.use(Element);
Vue.use(Xcrud, {
  // your global theme config
});

new Vue({
  router,
    render: h => h(App)
}).$mount("#app");

License

MIT

Copyright (c) 2019-present, charles

Keywords

crud

FAQs

Package last updated on 19 May 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