当前位置:   article > 正文

vue项目中公共 js 文件的封装export_vue js公共类

vue js公共类

我们一般的做法是在 src 文件夹下 新建一个 util 文件夹,util 文件夹里面存放一个 utils.js 文件,这个 js 文件中存放公共的函数。下面讲解大概三种用法。
一、对 utils.js 通过 export default 默认导出为对象
utils.js 内容:

//import {Message, MessageBox} from 'element-ui' // elementui 引入(这里根据个人需求决定是否需要导入)
export default {
  //等同于test: function ()...
  test(x){
    console.log(x)
  },
  hello(){
    console.log("Hello World!")
  }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10

在main.js中引入:

//公共js函数
import utils from "@/util/utils"; // @ 默认的是 src 文件夹,后面省略了utils.js 后面的后缀名js
Vue.prototype.$utils = utils;    //直接定义在vue的原型上面
  • 1
  • 2
  • 3

这样在组件中,就可以直接拿来用了,写法为:this.$utils.hello( )

二、对 utils 通过 export 默认导出
utils.js 内容:

function test(x){
  console.log(x)
}
function  hello(){
  console.log("Hello World!")
}
export default{   //注意这里是default
  test,
  hello
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10

在组件中就可以通过 import utils from ‘@/util/utils.js’ 引入,用法为: utils.hello( )

三、对 utils.js 通过 export 普通导出
utils.js 内容:

export function test(x){
  console.log(x)
}
export function  hello(){
  console.log("Hello World!")
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

然后在组件中通过 import { test, hello } from ‘@/util/utils.js’ 引入(这里可以根据自己的需求,用到哪些函数,就引入哪些函数),用法为 test( )
四、导出

export const menu1 = [
    { label: '首页', id: 1 }
]
export const menu2 = [
    { label: '用户管理', id: 8 },
    { label: '角色管理', id: 9 }
]
//调用
import { menu1, menu2 } from "@/assets/constants/menus";
//
let nv = [...menu1, ...menu2].find(({ label }) => label == item.name);
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11

五、vue3中使用

const onShowDeleteConfirmMsg = (msg, config = {}) => {
  return ElMessageBox.confirm(msg, '提示', {
    confirmButtonText: '确定',
    cancelButtonText: '取消',
    type: 'warning',
    ...config
  })
}

export { onShowMessage, onShowMessageBox, onShowDeleteConfirmMsg }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
import { onShowMessage } from '@/utils/showMessage'
const addParamFun = async () => {
 const params = { ...state.accessForm }
 try {
 const res = await creatAccess(params)
 if (res.data) {
 state.loading = false
 onShowMessage({
 message: '新增入网设备成功',
 type: 'success'
 })
 ctx.emit('closeDialog', { reload: true })
 }
 state.loading = false
 } catch {
 state.loading = false
 }
 }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
<template>
  <div class="tree-box mt-10">
    <el-tree default-expand-all node-key="id" highlight-current :props="{ children: 'children', label: 'name' }" :data="treeDataList" :expand-on-click-node="false" @current-change="currentChange">
      <template #default="{ data }">
        <div class="custom-tree-node">
          <label>{{ data.name }}</label>
          <el-tag v-if="data.labelItemId && data.labelName" :style="getTagStyle(data.labelColor)" size="small">{{ data.labelName }}</el-tag>
        </div>
      </template>
    </el-tree>
  </div>
</template>

<script>
import { ref, reactive, toRefs, onMounted, watch } from 'vue'
import { getTagStyle } from '@/utils/helper'

export default {
  name: 'LedgerTree',
  props: {
    treeData: {
      type: Array
    }
  },
  setup(props, ctx) {
    const tabList = [
      { name: 'department', label: '组织部门' },
      { name: 'device', label: '设备类型' },
      { name: 'area', label: '区域位置' }
    ]

    const activeTabName = ref('department')

    const state = reactive({
      //左侧树状数据
      treeDataList: []
    })

    watch(
      () => props.treeData,
      (newVla, oldVal) => {
        state.treeDataList = props.treeData.length > 0 ? props.treeData : []
      },
      {
        immediate: true
      }
    )

    //节点改变
    const currentChange = treeNode => {
      ctx.emit('changeNode', treeNode)
    }

    onMounted(() => {})

    return {
      activeTabName,
      ...toRefs(state),
      tabList,
      getTagStyle,
      currentChange
    }
  }
}
</script>

<style lang="scss" scoped>
.tree-box {
  width: 100%;
  min-width: 280px;
  height: 100%;
}
.el-tree,
.ztree {
  height: 100%;
  overflow-y: auto;
}
.custom-tree-node {
  width: 100%;
  text-align: left;
  &:hover {
    cursor: pointer;
  }
  label:hover {
    cursor: pointer;
  }
}
</style>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小小林熬夜学编程/article/detail/701052
推荐阅读
相关标签
  

闽ICP备14008679号