We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
在开发一个组件之前, 就使用vue-cli 脚手架, 创建一个目录, 搭建我们写组件所需要的环境
vue-cli
从空目录开始一个新的项目, 在 github 上创建项目
github
git
README.md
git init
LICENSE
MIT
npm yarn
npm init (-y)
Vue, React, JS
Vue
使用脚手架 npm install -g @vue/cli vue create hello-world
上面我们就使用 Vue 创建一个脚手架, 可以写我们的组件开源库代码, 使用的技术栈
Scss
Button
css
*{margin: 0;padding: 0;} *, *::after, *::before{box-sizing: border-box;}
scss
// style/var.scss $font-size: 14px; $button-height: 32px; $border-bg: #fff; $button-active-bg: #eee; $border-radius: 4px; $border-color: #999; $border-color-light: lighten($border-color, 30%); $border-color-hover: #666;
src
button.vue
// src/button/button.vue <template> <button class="y-button"> 你好 </button> </template> <script> export default { name: 'ElementButton' } </script>
App.vue
<template> <div id="app"> <y-button /> </div> </template> <script> import YButton from './button/button.vue' export default { name: "App", components: { YButton } }; </script>
在线查看Button组件基本样式
icon
iconfont
symbol
svg.js
传递一个 props 给到子组件 icon <template> <button class="y-button"> // icon 属性是否存在 <svg class="y-icon" v-if="icon"> <use :xlink:href="`#i-${icon}`"></use> </svg> <slot></slot> </button> </template> <script> import "../svg/svg"; export default { name: "ElementButton", props: { icon: String } }; </script>
<template> <div id="app"> // 使用 <y-button icon="download">点击按钮</y-button> <y-button>点击按钮</y-button> </div> </template>
在线查看传 icon props的 Button
The text was updated successfully, but these errors were encountered:
No branches or pull requests
git
仓库README.md
, 说明项目用来干什么git init
初始化当前仓库LICENSE
LICENSE
, 我选择的是MIT
npm yarn
npm init (-y)
Vue, React, JS
Vue
上面我们就使用
Vue
创建一个脚手架, 可以写我们的组件开源库代码, 使用的技术栈Vue
Scss
Button用例图
1. 根据用例图, 完成我们的
Button
组件基本样式css
初始化scss
变量src
下创建Button
文件夹, 我们在里面创建button.vue
App.vue
在线查看Button组件基本样式
2. 带有 icon 的 Button 组件
icon
, 使用阿里的iconfont
选择自己需要使用的icon
,symbol
引用, 把生成的代码放到本地的svg.js
在线查看传 icon props的 Button
未完待续...
The text was updated successfully, but these errors were encountered: