如下js:util/tool.js
var tool = {
nullKeyValueConvertLine(data){
if(data && data.length > 0){
data.map((item,index)=>{
for(var key in item){
if(!item[key]&&item[key]!=0){
item[key] = '-'
}
}
})
}
},
}
export default tool
在vue2项目中全局引入并使用js
1.在main.js中引入
import Vue from 'vue';
import tool from "@/util/tool.js"
Vue.prototype.$tool = tool;
2.在页面中直接使用,例如:
<script>
export default {
name: 'home',
created() {
//方法一的使用方法
this.$tool.nullKeyValueConvertLine()
//方法二的使用方法
tool.nullKeyValueConvertLine()
}
}
</script>
在vue3项目中全局引入并使用js
1.在main.js中引入
import App from './App'
const app = createApp(App)
app.config.globalProperties.$properType = {
//一般公共方法
tool : tool,
}
2.在页面中使用,例如:
this.$properType.tool.nullKeyValueConvertLine()
附送250套精选项目源码
源码截图
源码获取:关注公众号「码农园区」,回复 【源码】,即可获取全套源码下载链接