ant Desgn Pro Vue 修改 title

我是直接全目录下搜索 Ant Desgn pro 后,然后一个个改了看效果找到的。

在 ../src/components/tools/Logo.vue 文件中修改

export default {
  name: 'Logo',
  components: {
    LogoSvg
  },
  props: {
    title: {
      type: String,
      default: '修改后',
      required: false
    },
    showTitle: {
      type: Boolean,
      default: true,
      required: false
    }
  }
}
</script>

效果如下:

然后再 ../src/utils/domUtil.js 修改

export const domTitle = 'title'

登录界面的,在 ../views/user/login.vue 中修改即可

原文地址:https://www.cnblogs.com/xsbx/p/Ant-Design-Pro.html