gpt4 book ai didi

javascript - 如何使用vuejs2从另一个组件执行功能

转载 作者:搜寻专家 更新时间:2023-10-30 22:50:50 25 4
gpt4 key购买 nike

我有一个组件需要在我的边栏打开时收集一个事件,我需要在每次需要打开我的边栏时调用这个函数。

这是一个例子:我点击一个元素,该元素打开我的侧边栏,mysiderbar 调用一个函数,该函数将调用一个警报函数。

但是我的代码是从我挂载的函数表单 vuejs 中执行的

这是我的第一个调用侧边栏的文件

<template>
<div>
<p>Just a template</p>
</div>
</template>

<script>
export default {
name: 'home',
data: function() {
return {
status: 'critical'
}
},
mounted() {

var openSidebar = function() {
document.getElementsByClassName('side-bar')[0].style.display = 'block';
};
document.getElementById('box').addEventListener('click', openSidebar);
},

}
</script>
<style>

</style>

这是我的第二个文件

<template>
<div>
<app-server-status></app-server-status>
<div id="box">
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Similique laborum repellat nihil maxime et veniam sed, sequi minima, quasi ipsum enim.</p>
</div>
<div class="side-bar">Lorem ipsum dolor sit amet consectetur adipisicing elit. Porro amet sed autem non qui dolor minima. Incidunt eos recusandae doloribus hic nesciunt nostrum suscipit dolorum velit, voluptatum, accusamus, ullam fugiat!</div>
</div>
</template>

<script>
//import local component server status
import ServerStatus from './ServerStatus.vue';

export default {
name: 'home',
components: {
'app-server-status': ServerStatus
},
methods: {
callAlert() {
alert('TESTE')
}
},
created() {
},
mounted() {
function callAlert() {
alert('Test');
}

},
}
</script>
<style>
#box {
background: red;
width: 200px;
height: auto;
float: left;
}
.side-bar {
position: absolute;
width: 250px;
height: 400px;
right: 0;
display: none;
background: blue;
}

</style>

我想在侧边栏打开时调用功能警报吗?

最佳答案

因此,我找到了解决问题的方法,而且我知道可能存在更好的方法,但对我有用。不幸的是,我没有找到任何具体的教程来执行此操作,但是这个示例对我帮助很大。

https://codepen.io/senta/pen/NpZVxg?editors=0010

在第一个文件 Server Status 我在 vuejs 中 $emit 一个事件

    <template>
<div>
<p>Just a template</p>
<div id="storage">ITs ME</div>
</div> </template>

<script> export default { name: 'home', methods: {
//https://codepen.io/senta/pen/NpZVxg?editors=0010
//chamar a função extena
openSidebar: function () {
var vm = this;
document.getElementById('box').addEventListener('click', function () {
vm.$parent.$emit('some-event');
var elem = document.getElementsByClassName('side-bar')[0].style.display;

if(elem === 'none' ) {
document.getElementsByClassName('side-bar')[0].style.display = 'block'
} else {
document.getElementsByClassName('side-bar')[0].style.display = 'none'
}
});
}, },
mounted() {
this.openSidebar();
},
}
</script>
<style>
#storage {
background: rebeccapurple;
color: white;
padding: 10px 10px;
margin-bottom: 20px;
} </style>

从第二个文件中我得到事件 this.$on('some-event') 调用我的函数 callAlert() 然后触发给定函数并显示警报。

<template>
<div>
<app-server-status></app-server-status>
<div id="box">
<p>IAM A TOOGLE</p>
</div>
<div class="side-bar" style="display: none;" >Lorem ipsum dolor sit amet consectetur adipisicing elit. Porro amet sed autem non qui dolor minima. Incidunt eos recusandae doloribus hic nesciunt nostrum suscipit dolorum velit, voluptatum, accusamus, ullam fugiat!</div>
</div>
</template>

<script>
//import local component server status
import ServerStatus from './ServerStatus.vue';

export default {
name: 'home',
components: {
'app-server-status': ServerStatus
},
methods: {
callAlert() {
var elem = document.querySelector('.side-bar');
var elemC = elem.style.display;
if (elemC !== 'block') {
alert('Opening');
} else {
alert('Close');
}
}
},
created: function () {
this.$on('some-event', () => {
this.callAlert();
})
},
mounted() {
}
}
</script>
<style>
#box {
background: red;
width: 200px;
height: auto;
float: left;
}
.side-bar {
position: absolute;
width: 250px;
height: 400px;
right: 0;
background: blue;
}

</style>

谢谢

关于javascript - 如何使用vuejs2从另一个组件执行功能,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51572324/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com