mirror of https://github.com/ElemeFE/element
![]() 问题描述: 如果我在组件中加入不同的transition或者transition: all duration的形式,那么this.$el.addEventListener(‘transitioned’, handeler)就会监听到多次事件,从而导致多次删除,因为节点已经从dom中删除, 所以最后报错: ’main.vue?8f52:44 Uncaught TypeError: Cannot read property 'removeChild' of null’。 解决办法: 就是在第一次监听到动画结束事件时,将监听器移除即可。 |
||
---|---|---|
.github | ||
build | ||
examples | ||
packages | ||
src | ||
test/unit | ||
.babelrc | ||
.eslintignore | ||
.eslintrc | ||
.gitattributes | ||
.gitignore | ||
.travis.yml | ||
CHANGELOG.md | ||
FAQ.md | ||
LICENSE | ||
Makefile | ||
README.md | ||
components.json | ||
custom-theme.md | ||
i18n.md | ||
lerna.json | ||
package.json |
README.md
Element
Desktop UI elements for Vue.js 2.0.
Links
- Home Page
- Docs
- FAQ 中文
- 自定义主题
- i18n
- Starter Kit
- element-starter
- element-cooking-starter
- element-in-laravel-starter
- Design resources
- Boilerplate for bug reports
- CodePen
- JSFiddle
- Mint UI - Mobile UI elements for Vue.js
Install
npm install element-ui@next -S
Quick Start
import Vue from 'vue'
import Element from 'element-ui'
Vue.use(Element)
// or
import {
Select,
Button
// ...
} from 'element-ui'
Vue.component(Select.name, Select)
Vue.component(Button.name, Button)
(roughly) to
import Vue from 'vue'
import Element from 'element-ui'
import 'element-ui/lib/theme-default/index.css'
Vue.use(Element)
// or
import Select from 'element-ui/lib/select'
import 'element-ui/lib/theme-default/select.css'
import Button from 'element-ui/lib/button'
import 'element-ui/lib/theme-default/button.css'
Vue.component(Select.name, Select)
Vue.component(Button.name, Button)
babel-plugin-component
.babelrc
{
"plugins": [["component", [
{
"libraryName": "element-ui",
"styleLibraryName": "theme-default"
}
]]]
}
Browser Support
Modern browsers and Internet Explorer 9+.
Development
Skip this part if you just want to use Element.
For those who are interested in contributing to Element, please refer to our contributing guide to see how to run this project.
Changelog
Detailed changes for each release are documented in the release notes.
FAQ
We have collected some frequently asked questions. Before reporting an issue, please search if the FAQ has the answer to your problem.
Contribution
Please make sure to read the Contributing Guide before making a pull request.
LICENSE
MIT