Vue 开发项目的一些实用小技巧

发布于 2019-08-13 13:17:15 字数 5163 浏览 1777 评论 0

Vue 开发着实有很多坑,不过我们可以通过适当的方式避免这些坑,这篇文章给大家分享一些 Vue 开发项目的一些实用小技巧,坑就在那儿我们可以选择跳过。

watch 中 immediate 作用

有请求需要再也没初始化的时候就执行一次,然后监听他的变化,很多人这么写:

watch: {
  searchInputValue(){
    this.fetchPostList()
  }
}

但是有些时候却监听不到这个变化,不妨添加 immediate 属性试试:

watch: {
  searchInputValue:{
    handler: 'fetchPostList',
    immediate: true
  }
}

组件注册

一般情况下,我们组件如下写:

import BaseButton from './baseButton'
import BaseIcon from './baseIcon'
import BaseInput from './baseInput'
export default {
 components: {
  BaseButton,
  BaseIcon,
  BaseInput
 }
}
<BaseInput v-model="searchText" @keydown.enter="search" />
<BaseButton @click="search"> <BaseIcon name="search"/></BaseButton>

这个实用方法也就是:引入、注册、实用,也是最常用的使用方法,但是如果我们有很多的组件,一个个的这样写岂不是要累死,我们可以借助一下webpack,使用 require.context() 方法来创建自己的(模块)上下文,从而实现自动动态 require 组件。

在 src 文件夹下面 main.js 中,借助 webpack 动态将需要的基础组件统统打包进来:

import Vue from 'vue'
import upperFirst from 'lodash/upperFirst'
import camelCase from 'lodash/camelCase'
// Require in a base component context
const requireComponent = require.context(
  './components', false, /base-[\w-]+\.vue$/
)
requireComponent.keys().forEach(fileName => {
  // Get component config
  const componentConfig = requireComponent(fileName)
  // Get PascalCase name of component
  const componentName = upperFirst(
    camelCase(fileName.replace(/^\.\//, '').replace(/\.\w+$/, ''))
  )
  // Register component globally
  Vue.component(componentName, componentConfig.default || componentConfig)
})

这样我们引入组件只需要第三步就可以了:

<BaseInput
  v-model="searchText"
  @keydown.enter="search"
/>
<BaseButton @click="search">
  <BaseIcon name="search"/>
</BaseButton>

简化 vuex 的 modules 引入

同样的对于 vuex,我们输出 store 如下写:

import auth from './modules/auth'
import posts from './modules/posts'
import comments from './modules/comments'
// ...
export default new Vuex.Store({
  modules: {
    auth,
    posts,
    comments,
    // ...
  }
})

要引入好多 modules,然后再注册到Vuex.Store中,精简的做法和上面类似,也是运用 require.context() 读取文件:

import camelCase from 'lodash/camelCase'
const requireModule = require.context('.', false, /\.js$/)
const modules = {}
requireModule.keys().forEach(fileName => {
  // Don't register this file as a Vuex module
  if (fileName === './index.js') return
  const moduleName = camelCase(
    fileName.replace(/(\.\/|\.js)/g, '')
  )
  modules[moduleName] = {
    namespaced: true,
    ...requireModule(fileName),
  }
})
export default modules

这样我们只需如下代码就可以了:

import modules from './modules'
export default new Vuex.Store({
  modules
})

路由的延迟加载

可以通过 require 方式或者 import() 方式动态加载组件。

{
  path: '/admin',
  name: 'admin-dashboard',
  component:require('@views/admin').default
}

或者使用下面的方式:

{
  path: '/admin',
  name: 'admin-dashboard',
  component:() => import('@views/admin')
}

URL 参数变化页面不重新加载

这个问题可能很多人都遇到过,两个子组件之间跳转,或者同样的页面加载不同的文章等,原因是 vue-router 机智的发现这是同一个组件,然后它就决定要复用这个组件,你在 created 函数里写的方法压根就没执行。通常的解决方案是监听 $route 的变化来初始化数据。

watch: {
  '$route': {
    handler: 'resetData',
    immediate: true
  }
},

但是每次都这样写似乎不是很优雅,那么还有一种可行的方法,就是给路由加上唯一的 KEY:

<router-view :key="$route.fullpath"></router-view>

给 router-view 添加一个唯一的 key,这样即使是公用组件,只要 url 变化了,就一定会重新创建这个组件。

唯一组件根元素

组件里面第一个元素要保持没有同级的元素,不然就会报错:

<template>
<li
  v-for="route in routes"
  :key="route.name"
>
  <router-link :to="route">
    {{ route.title }}
  </router-link>
</li>
</template>

我们可以用 render 函数来渲染:

render(h, { props }) {
 return props.routes.map(route =>
  <li key={route.name}>
   <router-link to={route}>
    {route.title}
   </router-link>
  </li>
 )
}

组件包装 事件属性穿透

当我们写组件的时候,通常我们都需要从父组件传递一系列的props到子组件,同时父组件监听子组件emit过来的一系列事件:

//父组件
<BaseInput 
  :value="value"
  label="密码"
  placeholder="请填写密码"
  @input="handleInput"
  @focus="handleFocus>
</BaseInput>
//子组件
<template>
 <label>
  {{ label }}
  <input
   :value="value"
   :placeholder="placeholder"
   @focus=$emit('focus', $event)"
   @input="$emit('input', $event.target.value)"
  >
 </label>
</template>

这样写很不精简,很多属性和事件都是手动定义的,我们可以如下写:

<input
  :value="value"
  v-bind="$attrs"
  v-on="listeners"
>
computed: {
 listeners() {
  return {
   ...this.$listeners,
   input: event => 
    this.$emit('input', event.target.value)
  }
 }
}

$attrs

包含了父作用域中不作为 prop 被识别(且获取)的特性绑定 (class 和 style 除外)。当一个组件没有声明任何 prop 时,这里会包含所有父作用域的绑定,并且可以通过 v-bind="$attrs" 传入内部组件。

$listeners

包含了父作用域中的(不含 .native 修饰器的)v-on 事件监听器。它可以通过 v-on="$listeners" 传入内部组件。

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据

关于作者

JSmiles

生命进入颠沛而奔忙的本质状态,并将以不断告别和相遇的陈旧方式继续下去。

0 文章
0 评论
84960 人气
更多

推荐作者

沧笙踏歌

文章 0 评论 0

山田美奈子

文章 0 评论 0

佚名

文章 0 评论 0

岁月无声

文章 0 评论 0

暗藏城府

文章 0 评论 0

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文