uniapp的页面中如何访问App.vue中的方法
<template>
<view id="k">
<view class="u-page">
<uni-page>
<uni-page-head uni-page-head-type="default" style="background-color: #f1f1f1">
<div class="uni-page-head" style="background-color: #f1f1f1;color: rgb(0, 0, 0);">
<div class="uni-page-head-hd" style="margin-left: 2%;">
<div class="uni-page-head-btn">
<i class="uni-btn-icon" @click="loign"
style="color: rgb(0, 0, 0); font-size: 27px;"></i>
</div>
</div>
上面的代码片段取自某个页面(A)中, 代码中有一个login方法(click绑定的),好多页面都有且代码都一样,把login移至App.vue中了。如下:
<script>
import Cookies from 'js-cookie';
export default {
onLaunch: function() {
console.log('App Launch');
},
//扩展函数
methods:{
login:function(){ //ETC }
}
想请教大家的是:现在页面(A)的click中该怎么写呢
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在main.js中重复声明了一下,好过于在页面中不断重复
在app里声明全局mixins