首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >如何在Vue.js中添加下标符号

如何在Vue.js中添加下标符号
EN

Stack Overflow用户
提问于 2022-02-24 15:46:36
回答 1查看 124关注 0票数 0

我想在https://en.wikipedia.org/wiki/SAP之后添加这个下标符号。我该怎么做呢?

代码语言:javascript
复制
{
    number: '02',
    title: 'Multiple Automation Agents ',
    descriptionTwo: [
        'Achieve 100% savings on infra scaling & Additional SOX Cost',
        'Eliminate GUI based automation for SAP with SAP NetWeaver ABAP Automation Studio ',
        'Realize speed and reliability with Low-code RPA Agent employing libraries as opposed to traditional coding',
        'Conquer challenges of automation in API based systems like ServiceNow, Salesforce with API Agent',
    ],
},

在HTML:SAP<sup>®</sup>中也是如此

EN

回答 1

Stack Overflow用户

回答已采纳

发布于 2022-02-24 15:56:25

工作演示:

代码语言:javascript
复制
new Vue({
  el: '#app',
  data: {
    message: {
      number: '02',
      title: 'Multiple Automation Agents ',
      descriptionTwo: [
        'Achieve 100% savings on infra scaling & Additional SOX Cost',
        'Eliminate GUI based automation for SAP<sup>®</sup> with SAP<sup>®</sup> NetWeaver ABAP Automation Studio ',
        'Realize speed and reliability with Low-code RPA Agent employing libraries as opposed to traditional coding',
        'Conquer challenges of automation in API based systems like ServiceNow, Salesforce with API Agent',
      ]
    }
  }
})
代码语言:javascript
复制
<script src="https://cdnjs.cloudflare.com/ajax/libs/vue/2.5.17/vue.js"></script>
<div id="app">
  <ul v-for="(item, index) in message.descriptionTwo" :key="index">
    <li v-html="item"></li>
  </ul>
</div>

票数 1
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/71254655

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档