服务器之家

服务器之家 > 正文

vue组件暴露和.js文件暴露接口操作

时间:2021-08-19 17:26     来源/作者:远在北方的鬼

1、将同一类型的组件放在一个文件夹下

2、在此文件夹下创建一个index.js

vue组件暴露和.js文件暴露接口操作

3、在index.js中导入组件,并把他们暴露出去

1、写法一

?
1
2
3
4
5
import studentcourse1 from './studentcourse.vue'
import studentinfo1 from './studentinfo.vue'
 
export var studentcourse=studentcourse1
export var studentinfo=studentinfo1

2、写法二

?
1
2
3
4
5
export var studentcourse=()=>import('./studentcourse.vue')
export var studentinfo=()=>import('./studentinfo.vue')
//export var studentinfo=()=>{
return import('./studentinfo.vue')
}

4、最后在.vue文件中使用组件

此处你只需引入index.js所在文件夹就行啦

?
1
2
3
4
5
6
7
import {studentcourse,studentinfo} from './components/stucom'
export default{
components:{
 'studentcourse':studentcourse,
 'studentinfo':studentinfo
 }
}

1、将.js放在同一个文件夹下

2、同样一定要有一个index.js文件

vue组件暴露和.js文件暴露接口操作

3、 index.js文件内容如下

?
1
2
3
4
5
6
import auth from './auth.js'
 import error from './error-log.js'
export default{
auth,
error
}

4、在main.js中

import utils from './utils'

vue.use(utils.auth,{params})

补充知识:vue项目中将方法名暴露给app端调用

只需要将methods中的方法赋值到window对象即可

?
1
2
3
4
5
6
7
8
9
10
created() {
 window.getparams = this.getparams
},
 
methods: {
 getparams(params) {
  this.id = params.id
  // ...
 },
}

也可以赋值给window对象中的某个对象

以上这篇vue组件暴露和.js文件暴露接口操作就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。

原文链接:https://blog.csdn.net/weixin_44846723/article/details/100770450

标签:

相关文章

热门资讯

yue是什么意思 网络流行语yue了是什么梗
yue是什么意思 网络流行语yue了是什么梗 2020-10-11
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全 2019-12-26
背刺什么意思 网络词语背刺是什么梗
背刺什么意思 网络词语背刺是什么梗 2020-05-22
苹果12mini价格表官网报价 iPhone12mini全版本价格汇总
苹果12mini价格表官网报价 iPhone12mini全版本价格汇总 2020-11-13
2021年耽改剧名单 2021要播出的59部耽改剧列表
2021年耽改剧名单 2021要播出的59部耽改剧列表 2021-03-05
返回顶部