作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个 v-app-bar
控制,我正在尝试向其添加 Logo /图像。
Veutify 中是否有向 AppBar 添加 Logo 的标准方法?
最佳答案
您可以添加 v-img
像这样的组件:
<v-app-bar color="light-blue lighten-3" app>
<v-img
class="mx-2"
src="https://i.imgur.com/qgGY4tB.png"
max-height="40"
max-width="40"
contain
></v-img>
<v-toolbar-title class="ml-2">
Page title
</v-toolbar-title>
</v-app-bar>
max-height
很重要和
max-width
,否则图像将垂直溢出导航并水平推过标题。并设置
contain
保持纵横比
Note: If you're using Nuxt/Webpack, etc, you might need to build the image path with something like this:
:src="require('~/assets/logo.png')"
关于vue-component - 如何在 Vuetify 中为 AppBar 添加 Logo ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54091850/
我是一名优秀的程序员,十分优秀!