let array = [2, 4, 1, 3, 9]
console.log(array.push(6))
6 - 数组的长度
这个不就是
100px
吗?为什么面试官说是0
<div style="width: 200px; height: 200px">
<div style="width: 100px; height: 100px; margin-left: 100px"></div>
</div>
created
生命周期函数中有这么一段代码一开始就问我在里面打印 this 是啥,我说就是实例化的 vue,然后引导之后我才知道他问我这个呢
export default {
created() {
// 输出什么?
setTimeout(() => {
console.log(this)
}, 50)
// 输出什么?
setTimeout(function () {
console.log(this)
}, 50)
}
}
回答的
<KeepAlive>
这个组件
回答的通过
onActivated
这个<KeepAlive>
组件的生命周期函数,在这个函数里面重新请求数据
v-if
和 v-show
区别面试官嘀咕说好久不面了,都不知道问啥了
watch
和 computed
的区别八股
nextTick
<div id="box"></div>
<style>
#box {
width: 200px;
height: 200px;
background-color: red;
padding: 100px;
}
</style>
400px
200px
设置
box-sizing: border-box;