Home > Web Front-end > JS Tutorial > body text

How vue.js element-ui tree tree control modifies iview

php中世界最好的语言
Release: 2018-05-08 09:42:24
Original
3337 people have browsed it

This time I will show you how to modify iview with vue.js element-ui tree tree control, and how to modify iview with vue.js element-ui tree tree control. What are the precautions?, here is the actual combat Let’s take a look at the case. z

Implementation principle

Modified the element-ui source code, extracted the tree module in the source code

Then modified the checkbox and other components that come with element It is the checkbox of iview and is compatible with the method

Finally modified the element style and changed it to iview style. I also added some styles myself

The new tree component can be said to be the logic of element and the style of iview

Copy after login

Modify handleCheckChange because the logic of the checkbox component of iview is different and the return of the function is different. It needs to be compatible with

handleCheckChange(ev) {
    this.node.setChecked(ev, !this.tree.checkStrictly);
   },
Copy after login

after the extraction is completed, and the project structure is packaged into an npm plug-in

How to use

Must install iview

All styles are replaced with ivew

All functions are in accordance with element -ui is the same as before

npm i chu-tree-iview
Copy after login
import chuView from 'chu-tree-iview'
Vue.use(chuView)
Copy after login

The usage documentation is exactly the same as element-ui

I believe you have mastered the method after reading the case in this article. For more exciting information, please pay attention to other related articles on the PHP Chinese website!

Recommended reading:

Html prohibits right-click copy function

Detailed explanation of the steps to implement file drag and drop in JS (with code)

The above is the detailed content of How vue.js element-ui tree tree control modifies iview. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!