
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
这是我在学习 Vue 过程中做的一个 UI 框架,目的在于学习 Vue 及学习造轮子,本项目会尽可能全的使用 Vue 中的特性和 API ,同时也会进行单元测试和持续集成,以熟悉工程化概念和流程。不建议在实际项目中采用本框架。
npm i --save dion-ui
使用本框架前,请在 CSS 中开启 border-box
*,*::before,*::after{box-sizing: border-box;}
IE 8 及以上浏览器都支持此样式。
你还需要设置默认颜色等变量(后续会改为 SCSS 变量)
html {
--button-height: 32px;
--font-size: 14px;
--button-bg: white;
--button-active-bg: #eee;
--border-radius: 4px;
--color: #333;
--border-color: #999;
--border-color-hover: #666;
}
import {Button, ButtonGroup, Icon} from 'dino-ui'
import 'dino-ui/dist/index.css'
export default {
name: 'app',
components: {
'g-button': Button,
'g-icon': Icon
}
}
FAQs
Personal Vue UI
We found that dino-ui demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.