Home  >  Article  >  Web Front-end  >  Detailed description of using jointjs in vue

Detailed description of using jointjs in vue

php中世界最好的语言
php中世界最好的语言Original
2018-05-08 18:06:194004browse

This time I will bring you detailed instructions for using jointjs in vue. What are the precautions for using jointjs in vue? The following is a practical case, let's take a look.

After reading this article, you should at least have a rough idea of ​​how to 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 use joint.js and jquery as global variables

window.$ = require('jquery');
window.joint = require('jointjs');
You need to pay attention here What's interesting is that joint.js relies on backbone, jquery and lodash. When introducing it through script, you need to import these files one by one, but it is not necessary when using npm of vue. The joint.js introduced by npm has already encapsulated these files 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 caused by the conflict between joint.js and the environment in your own vue project, resulting in the inability to read. Fetch or 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 enough? Can I run the example in the link above? Like this:


NoNoNo, notice that the rendering is placed in the

lifecycle of created. According to the lifecycle of vue, the el of the joint's mounting p cannot be found: $('#myholder'), that is to say, 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. It needs to be clicked before it can be displayed. , it is not perfect yet and needs to be improved (~ ̄▽ ̄)~

In other words, the code will become like this:


To point out, just install jointjs when introduced through npm Yes, there is no need to install lodash, backbone, jquery, or import the joint.css file into the page. The author previously introduced joint.js through script. I tried many times without success. I kept getting errors when reading the joint.js file. If other friends try successfully, please feel free to share.

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:

Detailed explanation of unit and E2E testing steps with Angular CLI

##Detailed explanation of the use of computed and methods

The above is the detailed content of Detailed description of using jointjs in vue. For more information, please follow other related articles on the PHP Chinese website!

Statement:
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