How to use jointjs in vue

亚连
Release: 2018-05-29 11:10:46
Original
1790 people have browsed it

This article mainly introduces the method of using jointjs in vue. Now I will share it with you and give you a reference.

Regarding the issue of introducing joint.js into vue, I searched a lot on the Internet before, but no definite answer was given. After two days of tinkering, I finally figured it out and made a record.
First of all, I referred to an article from stackoverflow click me click me

After reading this article, you should at least roughly do it. Let’s take a look at it in detail:

First run npm install jointjs --save in the vue project

Then add the following two lines to the entry file, mine is main.js, or it may be app.js, and add joint.js and jquery are used as global variables

window.$ = require('jquery'); window.joint = require('jointjs');
Copy after login

It should be noted here that joint.js relies on backbone, jquery and lodash, through script When importing, you need to import these files one by one, but not when using npm of vue. The joint.js introduced by npm has already encapsulated these by default.

It is not enough to introduce it in this way. You may encounter the problem that the diagram can be loaded normally, but cannot be dragged. When encountering these problems, it is usually due to the conflict between joint.js and the environment in your own vue project. Resulting in an inability to read or a read error.

I installed element, iview, axios, vuex, and jquery in my original project. After installing joint.js, jointjs could not be loaded normally. Later, I rebuilt a project and only installed element, axios, and vuex. , in order to avoid conflicts between jquery and jquery in joint.js, jquery was not installed later.

Is this okay? Can I run the example in the link above? Like this:

 
Copy after login

NoNoNo, notice that the rendering is placed in the created life cycle. According to the vue life cycle, the joint cannot be found. Mount p's el: $('#myholder'), which means that an error will be reported when running. My solution is to put a click on p, take the content of joint out of created, and put it in methods. Click to display it. It is not perfect yet and needs to be improved (~ ̄▽ ̄)~

In other words, the code will become like this:

 
Copy after login

To point out, if you import it through npm, you only need to install jointjs. There is no need to install lodash, backbone, jquery, or import the joint.css file into the page. The author has introduced joint.js through script before. I have tried many times without success. I keep getting errors when reading the joint.js file. If other friends try successfully, please feel free to share.

The above is what I compiled for everyone. I hope it will be helpful to everyone in the future.

Related articles:

How to use the better-scroll plug-in in Angular_AngularJS

Use node to create your own commands Line tool method tutorial

Angularjs implementation of communication methods between controllers Example summary

The above is the detailed content of How to use jointjs in vue. 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
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!