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

90s-ui

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
Package was removed
Sorry, it seems this package was removed from the registry

90s-ui

个人的组件库,只为更好的管理业务上通用的组件

unpublished
latest
npmnpm
Version
0.0.13
Version published
Maintainers
1
Created
Source

快速上手

本节将介绍如何在项目中使用 hello-ui。

引入 hello-ui

你可以引入整个 hello-ui,或是根据需要仅引入部分组件。我们先介绍如何引入完整的 hello-ui

完整引入

在 main.js 中写入以下内容:

import Vue from 'vue';
import HelloUI from 'hello-ui';
import 'hello-ui/lib/theme-chalk/index.css';
import App from './App.vue';

Vue.use(HelloUI);

new Vue({
  el: '#app',
  render: h => h(App)
});

以上代码便完成了 hello-ui 的引入。需要注意的是,样式文件需要单独引入。

按需引入

抱歉,还没提供这种方式,后期会完善

开始使用

至此,一个基于 Vuehello-ui 的开发环境已经搭建完毕,现在就可以编写代码了。各个组件的使用方法请参阅它们各自的文档。

FAQs

Package last updated on 30 Apr 2020

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