vue 动态设置div的高度_vue 动态设置title标题
时间: 2023-07-07 14:05:59 浏览: 93
vue动态设置页面title的方法实例
动态设置 div 的高度可以使用 Vue 中的动态绑定属性 `:style`,具体实现如下:
```html
<template>
<div :style="{ height: divHeight + 'px' }"></div>
</template>
<script>
export default {
data() {
return {
divHeight: 200 // 初始高度为 200px
}
},
mounted() {
// 在 mounted 钩子函数中进行高度的动态设置
this.divHeight = window.innerHeight // 设置 div 的高度为当前窗口的高度
}
}
</script>
```
动态设置 title 标题可以使用 Vue 的生命周期钩子函数 `created` 或 `mounted`,具体实现如下:
```html
<script>
export default {
created() {
document.title = '动态设置标题' // 在 created 钩子函数中设置标题
}
}
</script>
```
```html
<script>
export default {
mounted() {
document.title = '动态设置标题' // 在 mounted 钩子函数中设置标题
}
}
</script>
```
阅读全文