我们采用click点击事件来解决这个问题,配合js 的window.location.href
<template>
<div @click="gotosearchurl()"></div>
</template>
<script>
methods: {
gotosearchurl () {
window.location.href = 'http://search.tongwei.cn/'
}
};
</script>我们采用click点击事件来解决这个问题,配合js 的window.location.href
<template>
<div @click="gotosearchurl()"></div>
</template>
<script>
methods: {
gotosearchurl () {
window.location.href = 'http://search.tongwei.cn/'
}
};
</script>