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

How to use Vux in Vue project

php中世界最好的语言
Release: 2018-06-01 13:55:04
Original
36181 people have browsed it

This time I will show you how to use Vux in the Vue project. What are the precautions for using Vux in the Vue project? The following is a practical case, let's take a look.

Installed by defaultvue environment

1. Install vux

npm install vux --save-dev

2. Install vux-loader

npm install vux-loader --save-dev //官网没提安装这个,但是不安装会报错
Copy after login

3. Install less-loader to correctly compile less source code

npm install less less-loader --save-dev
Copy after login

4. Install yaml-loader to correctly read language files

npm install yaml-loader --save-dev
Copy after login

5. Modify the code in build/webpack.base.conf.js

Change

in the original text to the following

6. During installation After completing the dependencies and configuration files, introduce the vux template and modify the previous about.vue. The entire code is as follows

<template>
 <p class="about">
 <a href="./index.html" rel="external nofollow" >从about跳转到demo1</a>
 <group>
  <cell title="title" value="value"></cell>
 </group>
 </p>
</template>
<script>
 import { Group, Cell } from 'vux'
 export default {
 components: {
  Group,
  Cell
 }
 }
</script>
<style>
</style>
Copy after login
Finally, run npm run dev and the about.vue will be displayed. It is like this, it means that vux has been introduced successfully, and then you can use vux components to develop quickly

I believe you have mastered the method after reading the case in this article, and there will be more exciting things. Please pay attention to other related articles on php Chinese website!

Recommended reading:

How to operate vue to jump from the list page to the details page through the id

How to use slots in Vue Slot distribution parent component

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