Socket
Socket
Sign inDemoInstall

@58fe/v5

Package Overview
Dependencies
Maintainers
9
Versions
59
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@58fe/v5

vue components


Version published
Weekly downloads
6
decreased by-33.33%
Maintainers
9
Weekly downloads
 
Created
Source

V5

基于 VUE 的前端 UI 组件库

安装

npm install @58fe/v5  --save

使用

导入需要的组件,例如:

import { Alert } from '@58fe/v5';

按需加载

如过需要按需加载指定组件,需要配合 babel-plugin-import 插件使用

npm install @58fe/babel-plugin-v5-import --save-dev

在.babelrc 文件添加如下配置

{
	"plugins": ["@58fe/babel-plugin-v5-import"]
}

其他

1、打包时抛出 'These dependencies were not found:

原因是 V5 的样式是基于 sass 编写的,所以需要依赖以下两个 npm 包:

npm install sass-loader node-sass --save-dev

2、打包时抛出 Unexpected token

原因是 V5 的 js 源码没进行 babel 转译,可以在 webpack 配置中的增加以下 loaders:

{
	test: /v5.src.*?js$/,
	loader: "babel-loader"
}

Keywords

FAQs

Package last updated on 28 Apr 2019

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc