Use of vue components in practical cases
This time I will bring you the use of vue components in practical cases. What are the precautions for using vue components in practical cases? The following is a practical case, let's take a look.
zProject technology:
webpack vue element axois (vue-resource) less-loader...
Vue operation method case:
1. The array data has not been obtained, and a preloaded animation is made
<el-carousel :interval="3000" type="card" height="200px" class="common-mt-md"> <el-carousel-item v-for="item in movieArr" :key="item.id" class="text-center"> <img v-bind:src="item.images.small" alt="电影封面" class="ticket-index-movie-img"> </el-carousel-item>// 实际显示的内容-跑马灯 <p v-if="!movieArr.length" class="ticket-index-movie-loading"> <span class="el-icon-loading "></span> </p>// 当 movirArr的数组为空的时候,做出的预加载 loading </el-carousel>
2. Determining the button status, The question of whether the button can be clicked
<p v-if="!multipleSelection.length"> <el-button type="success" round disabled>导出</el-button> </p><!-- 不能点, 判断数组为空 --> <p v-else> <el-button type="success" round >导出</el-button> </p><!-- 可以点, 判断数组为不为空 -->
3. Like jquery, append dom (vue is data-oriented and should get rid of the complicated operations of jquery's dom)
<el-form-item label="时间" prop="name"> <el-input v-model="ruleForm.name"></el-input>//绑定模型,检测输入的格式 <span class="el-icon-plus ticket-manage-timeinput" @click="addTime(this)"></span>//绑定方法,增加dom的操作 </el-form-item> <el-form-item label="时间" prop="name" v-for="item in timeArr" :key='item.id'> //timeArr数组与数据就渲染下面的dom,没有就不显示 <el-input v-model="ruleForm.name"></el-input> <span class="el-icon-minus ticket-manage-timeinput" @click="minusTime(this)"></span> </el-form-item>
js:
Equivalent to the dom string in jq
timeInputString: '<el-input v-model="ruleForm.name"></el-input><span class="el-icon-minus"></span>'
Native js pushes and pops data into the array (grabs the length of the array), because vue is driven by data and judged by data. The dom
addTime () { this.timeArr.push('str') }, minusTime () { this.timeArr.shift('str') }
should not be rendered. 4. Add a class. When the scene is looping a certain list, a certain list has a class and is bound to a method, which can support passing parameters
dom
<li v-for="section in item.sections" :key='section.id' @click="hideParMask" :class="getSectionId(section.id)"> <router-link :to="{ name: 'learning', params: { sectionId: section.id}, query: { courseId: courseId}}" > <span>{{item.orderInCourse}}.{{section.sectionNumber}}</span> <span>{{section.name}}</span> </router-link> </li>
js
getSectionId (sectionId) { return { active: this.$route.params.sectionId === sectionId, } }
5. Child->parent component communication, vue.$emit vue.on
Child component:
getSectionId (sectionId) { return { active: this.$route.params.sectionId === sectionId, } }
Parent component:
dom
<v-child :courseId="courseId" v-on:receiveTitle="receiveTitle"></v-child>
js
methods: { receiveTitle (name) { this.titleName = name; // titleName 就是 **@课程 } }
Summary routine: The child component uses a function (event) to pass the receiveTitle attribute to the parent component, and then the parent component monitors this attribute and binds a method to this attribute. receiveTitle, the method passes parameters, this parameter is the value to be passed
6. Parent-> Child
Parent component:
dom:
<course-tab :courseList = courseList ></course-tab>
js:
courseList().then(res => { this.courseList = res.data.courses; }).catch( err => { console.log(err) });
Subcomponent:
props: { courseList: { type: Array } }
Summary routine: the parent component passes the variable to the subcomponent, you need to bind this variable on the subcomponent label, and then the subcomponent can be in the props Accept this variable
7. Handle error routing, redirect, add routing information in the router
{ path: '*', redirect: '/' }
Here is a redirect to the home page, or you can make a separate 404 page and redirect Go to this page
Programmatic navigation,
router.push({ path: 'login-regist' }) // 如果这样写的话,会寻找路由最近的 / 然后在后面直接拼接login-regist; 为了防止在多级嵌套路由里面出现bug ,应该写全路由的全部信息,包括 / router.push({ path: '/login-regist' })
8. Splice css in dom
<p class="img" :style="{background: 'url(' + item.logoFileURL + ')'}"></p>
9. Monitor scrolling events
data () { return { scrolled: false, show: true } }, methods: { handleScroll () { this.scrolled = window.scrollY > 0; if (this.scrolled) { this.show = false; } } }, mounted () { window.addEventListener('scroll', this.handleScroll); }
10. Monitor input Changes in the box input value
@input="search",
The method of monitoring the <el-input
of element-UI,
<el-input v-model="input" @keyup.enter.native="add" placeholder="请输入内容" >I believe you have mastered the method after reading the case in this article, and more How exciting, please pay attention to other related articles on php Chinese website!
Recommended reading:
Detailed explanation of render case in React
Detailed explanation of Vue Mixin function use case
The above is the detailed content of Use of vue components in practical cases. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



You can add a function to the Vue button by binding the button in the HTML template to a method. Define the method and write function logic in the Vue instance.

Using Bootstrap in Vue.js is divided into five steps: Install Bootstrap. Import Bootstrap in main.js. Use the Bootstrap component directly in the template. Optional: Custom style. Optional: Use plug-ins.

There are three ways to refer to JS files in Vue.js: directly specify the path using the <script> tag;; dynamic import using the mounted() lifecycle hook; and importing through the Vuex state management library.

The watch option in Vue.js allows developers to listen for changes in specific data. When the data changes, watch triggers a callback function to perform update views or other tasks. Its configuration options include immediate, which specifies whether to execute a callback immediately, and deep, which specifies whether to recursively listen to changes to objects or arrays.

Vue.js has four methods to return to the previous page: $router.go(-1)$router.back() uses <router-link to="/" component window.history.back(), and the method selection depends on the scene.

Vue multi-page development is a way to build applications using the Vue.js framework, where the application is divided into separate pages: Code Maintenance: Splitting the application into multiple pages can make the code easier to manage and maintain. Modularity: Each page can be used as a separate module for easy reuse and replacement. Simple routing: Navigation between pages can be managed through simple routing configuration. SEO Optimization: Each page has its own URL, which helps SEO.

You can query the Vue version by using Vue Devtools to view the Vue tab in the browser's console. Use npm to run the "npm list -g vue" command. Find the Vue item in the "dependencies" object of the package.json file. For Vue CLI projects, run the "vue --version" command. Check the version information in the <script> tag in the HTML file that refers to the Vue file.

Function interception in Vue is a technique used to limit the number of times a function is called within a specified time period and prevent performance problems. The implementation method is: import the lodash library: import { debounce } from 'lodash'; Use the debounce function to create an intercept function: const debouncedFunction = debounce(() => { / Logical / }, 500); Call the intercept function, and the control function is called at most once in 500 milliseconds.
