<template> <div class="myInfo"> <div class="show" id="me"> <img src="../assets/timg.jpg" alt="" width="150px"><br> <span>张志伟</span> <p> 这里是用户:张志伟的个人中心 </p> <p> 用户已发表:0篇帖子 </p> <p> 用户已收藏:0篇帖子 </p> <p> 用户已打赏:0篇帖子 </p> <p> 用户已评论:0篇帖子 </p> </div> <div class="show" id="texts"> <p> 本项目为张志伟同学个人编写的vue期末考试作业 </p> </div> </div> </template> <script> export default { name: 'about', } </script> <style scoped> .myInfo{ color: black; width: 1000px; height: 600px; margin: 30px auto; background: white; box-shadow: 1px 1px 1px #ccc; } .show{ float: left; height: 100%; text-align: center; } #me{ width: 300px; border-right: 2px solid #ccc; } #me p{ color: #ccc; text-indent: 2em } #me img{ margin: 100px 0 20px 0; } #me span{ color: black; font-weight: bold; } #texts{ width:500px; text-align: center } #texts p{ margin: 200px 100px; width: 500px; text-indent: 2em; text-align: left } </style> 将p标签里的内容更改成可以点击并实行跳转的按钮
时间: 2024-02-16 16:22:19 浏览: 165
您可以使用`<router-link>`来创建一个可点击并实现跳转的按钮。您可以将`<p>`标签替换为以下代码:
```html
<router-link to="/your-route">
<button>
点击跳转
</button>
</router-link>
```
替换后的代码如下:
```html
<template>
<div class="myInfo">
<div class="show" id="me">
<img src="../assets/timg.jpg" alt="" width="150px"><br>
<span>张志伟</span>
<p>
<router-link to="/your-route">
<button>
点击跳转
</button>
</router-link>
</p>
<p>
用户已发表:0篇帖子
</p>
<p>
用户已收藏:0篇帖子
</p>
<p>
用户已打赏:0篇帖子
</p>
<p>
用户已评论:0篇帖子
</p>
</div>
<div class="show" id="texts">
<p>
本项目为张志伟同学个人编写的vue期末考试作业
</p>
</div>
</div>
</template>
<script>
export default {
name: 'about',
}
</script>
<style scoped>
.myInfo{
color: black;
width: 1000px;
height: 600px;
margin: 30px auto;
background: white;
box-shadow: 1px 1px 1px #ccc;
}
.show{
float: left;
height: 100%;
text-align: center;
}
#me{
width: 300px;
border-right: 2px solid #ccc;
}
#me p{
color: #ccc;
text-indent: 2em
}
#me img{
margin: 100px 0 20px 0;
}
#me span{
color: black;
font-weight: bold;
}
#texts{
width:500px;
text-align: center
}
#texts p{
margin: 200px 100px;
width: 500px;
text-indent: 2em;
text-align: left
}
</style>
```
请注意,您需要将`/your-route`替换为您要跳转的实际路由路径。
阅读全文