🚀 Socket Launch Week Day 5:Introducing Repository Access Permissions and Custom Roles.Learn more
Sign In

@yuo/plui

Package Overview
Dependencies
Maintainers
2
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@yuo/plui

common components of Plog community

latest
npmnpm
Version
0.0.10
Version published
Maintainers
2
Created
Source

使用方法

推荐使用 yarn 安装

yarn add @yuo/plui

仅支持 Esmodule 模块

// main.js
import { createApp } from 'vue';
const app = createApp();

// 导入样式类
import '../node_modules/@yuo/plui/build/style.css';

// 全部引入
// import Plui from '@yuo/plui';
// app.use(Plui);

// 按需引入
import {
    PlCol,
    PlRow
} from '@yuo/plui';

app
    .use(PlCol);
    .use(PlRow);

// 目前没有写typings,需要禁掉引入时的ts规则
// @ts-ignore
// import {
//     PlCol,
//     PlRow
// } from '@yuo/plui';

// @ts-ignore
// import Plui from '@yuo/plui';

Keywords

plui

FAQs

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