面试题合集

css方面

1. 水平垂直居中方法

1. text-align: center; line-height: **px;
2. position: absolute; left: 50%; right: 50%; transform: translate(-50%, -50%);
3. display: flex; justify-content: center;(水平) align-item: center;

2. 清除浮动的方法

js方面

vue方面

1. watchcomputed区别

2. $router$route的区别

3. v-forkey的作用

你可能感兴趣的:(面试题合集)