npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

vue-lcd-engine

v2.0.1

Published

一款基于Vue的低代码引擎

Downloads

7

Readme

vue-lcd-engine

介绍

一款基于Vue的低代码引擎

软件架构

总体架构采用分层设计,通过组件层、模板层以及工程层进行拆分

总体架构

对于vue-lcd-engine分别通过componenttoolersidersetterrenderershare进行模块拆分。其中,component模块是暴露给开发者进行协同开发的共建区块

技术选型

安装教程

  1. 下载
npm install vue-lcd-engine
  1. 引入
import {
    Cascader,
    ComponentBox,
    ConfigItem,
    EditScreens,
    Feedback,
    Layout,
    Loading,
    Ruler,
    Size,
    SvgIcon,
    Thumbnail
} from 'vue-lcd-engine'

// 全局注册
[
   Cascader,
   ComponentBox,
   ConfigItem,
   EditScreens,
   Feedback,
   Layout,
   Loading,
   Ruler,
   Size,
   SvgIcon,
   Thumbnail 
].forEach(component => {
    Vue.component(component.name, component)
})
  1. 使用
<template>
    <ComponentBox />
</template>

<script>
export default {
    data() {
        return {
            
        }
    }
}
</script>

<style></style>

组件说明

|组件|名称|备注| |:-:|:-:|:-:| |Cascader|级联组件|import { Cascader } from 'vue-lcd-engine'| |ComponentBox|容器组件|import { ComponentBox } from 'vue-lcd-engine'| |ConfigItem|配置项组件|import { ConfigItem } from 'vue-lcd-engine'| |EditScreens|编辑大屏组件|import { EditScreens } from 'vue-lcd-engine'| |Feedback|反馈组件|import { Feedback } from 'vue-lcd-engine'| |Layout|布局组件|import { Layout } from 'vue-lcd-engine'| |Loading|加载组件|import { Loading } from 'vue-lcd-engine'| |Ruler|刻度尺组件|import { Ruler } from 'vue-lcd-engine'| |Size|尺寸组件|import { Size } from 'vue-lcd-engine'| |SvgIcon|Svg图标组件|import { SvgIcon } from 'vue-lcd-engine'| |Thumbnail|缩略图组件|import { Thumbnail } from 'vue-lcd-engine'|

依赖说明

|依赖|依赖包|备注| |:-:|:-:|:-:| |vue|vue 2.x|基于vue2的运行时进行构建| |ant-design-vue|ant-design-vue 1.x|基于ant-design-vue的组件库进行构建,主题色修改等请参考ant-desgin-vue的官方文档|

参考文献

许可说明

MIT

Copyright (c) 2024-present we452366