vue字符串中<br/>换行问题
作用及定义标签可定义预格式化的文本。被包围在标签 元素中的文本通常会保留空格和换行符。而文本也会呈现为等宽字体。## 示例用标签把字符串包起来,同时换\n<template><section class="wrap"><h4 >示例:</h4><div> <pre>{{str}}</pre></div>
·
作用及定义
pre 标签可定义预格式化的文本。
被包围在 pre 标签 元素中的文本通常会保留空格和换行符。而文本也会呈现为等宽字体。
示例
用 pre 标签把字符串包起来,同时br换\n
<template>
<section class="wrap">
<h4 >示例:</h4>
<div> <pre>{{str}}</pre></div>
</section>
</template>
<script>
export default {
data (){
return {
str:"这是一段换行\n的字符串"
}
}
}
</script>
<style lang="scss" scoped>
.wrap{
text-align: center;
h4{
font-size: 30px;
margin-bottom: 20px;
}
}
</style>
更多推荐
已为社区贡献6条内容
所有评论(0)