美文网首页
vue 为不同页面的body设置不同背景色

vue 为不同页面的body设置不同背景色

作者: 懿小诺 | 来源:发表于2019-10-14 09:11 被阅读0次

    利用组件的路由实现:

    具体如下:

    ```

    beforeRouteEnter (to, from, next) {

        // ...

        window.document.body.style.backgroundColor = '#EBEBEB';

        next();

      },

      beforeRouteLeave (to, from, next) {

        // ...

        window.document.body.style.backgroundColor = '';

        next();

      },

    ```

    相关文章

      网友评论

          本文标题:vue 为不同页面的body设置不同背景色

          本文链接:https://www.haomeiwen.com/subject/zrlnectx.html