将js工具函数写在根目录的common文件夹下,如util.js,内容如下:

function formatTime(time){
	//业务逻辑
	return time;
}
//导出函数
module.exports={
	//formatTime:formatTime
	formatTime//es6缩写形式
}

在vue页面文件引入外部js文件:

<template>
	<view class="">
		调用外部脚本文件
	</view>
</template>

<script>
	//引入js文件
	var util=require('@/common/util.js');
	var playtime=new Date();//获得当前时间
	var formattime=util.formatTime(playtime);
	console.log(formattime);
</script>
<style>
</style>

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐