Vue开发中的一些常见套路和技巧

前端开发 作者: 2024-08-20 16:45:01
属性排放 export default { name: '名称', components: { // 组件挂载a}, created(){} // 数据获取 beforeMount()

属性排放

export default {

    name: '名称',components: { // 组件挂载a},

    created(){}  数据获取

    beforeMount() {},
    data: () => ({}),响应式数据

    computed: {}  计算属性集合

    methods: {}  方法集合

    ...  销毁页面不要的资源
    
}

管理请求加载状态

async beforeMount(){
     开始加载
    this.loading = true
    try {
      const data = await getUserInfo()
    } catch (error) {
      console.log(error)
    } finally {
         停止加载
        false
    }
}

Proxy跨域

proxy: {
  "/api": {
    target: 'http://.......'true,1)"> 是否改变域名
    ws:  socket
    pathRewrite: {
       路径重写
      "/api": ''  对拼接内容进行重写
    }
  },....
}

对developer和build的打包进行不同配置

-- config
--- dev.js
--- build.js
--- public.js
vue.config.js

# 代码 vue.config.js
const devConfig = require('./config/dev')
const buildConfig = require('./config/build')
module.exports = process.env.NODE_ENV === 'development' ? devConfig : buildConfig

计算属性实用

 计算属性
computed: {
  filterList: function () {
  return this.showData.filter( (data) {
     返回需要显示的数据
    return data.isShow
  })
}
  
 DOM
  
<ul>
  <li v-for="item in filterList" :key="item.id">
  {{ item.name }}
  </li>
</ul>

集合方法

tableFactory(action) {
  switch (action) {
    case 'update':
      ...
      break;
    
    case 'create';
      
    case 'delete';
  
    :
       ...默认获取列表
      ;
  }
}

保持对Props的数据验证规范

props: {
    test: {
        type: String,1)">default: ''
    },test2: {
        type: [Number,String],1)">default: 1

组件名称使用

 GanMessage.vue组件
export  {
    name: 'GanMessage'
    .....
}

 引入后使用
components: {
    [GanMessage.name]: GanMessage
}

 模板中使用
<template>
    <gan-message/>
</template>

模板引擎调试

vue.prototype.$logs = window.console.log;

 使用
<template>
    {{$logs('1111')}}
</template>

获取数据的生命周期

async beforeMount(){
    const data = await getUserInfo();
}

使用async 和 await

 {}
}

watch

watch: {
    obj: {
      handler(newName,oldName) {
         console.log('obj.a changed');
      },immediate: true'obj.a': {
    handler(newName,oldName) {
      console.log('obj.a changed');
    },1)"> deep: true
  }
    
  } 

在自定义事件中,该值是从其子组件中捕获的值

<!-- Child -->
<template>
  <input type="text" @input="$emit('custom-event','hello')" />
</template>

<!-- Parent -->
<template>
  <Child @custom-event="handleCustomevent" />
</template>

<script>
export  {
  methods: {
    handleCustomevent (value) {
      console.log(value)  hello
    }
  }
}
</script>
原创声明
本站部分文章基于互联网的整理,我们会把真正“有用/优质”的文章整理提供给各位开发者。本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
本文链接:http://www.jiecseo.com/news/show_65616.html