最近在用vue.js,因为它比angularjs要轻量,但是总是在页面初始化加载时出现大括号({}),后来查看了vue.js的文档找到了解决方案


CSS:
<style>
    * {
        margin: 0;
        padding: 0;
    }

    html,
    body {
        position: relative;
        height: 100%;
        /*overflow-x: hidden;*/
    }
    [v-cloak] {
        display: none !important;
    }
<style> 
html:
<div id="center">
    <div v-cloak v-for="a in accessoryList" class="center_li" v-bind:id="a.id">
        <img class="center_li_img" v-bind:height="a.height" v-on:click="window.location.href = 'accessory_detail.html?goodsid=' + a.id" v-bind:src="a.itemAccessoryModel.thumbnail" alt="">
    </div>
</div>

备注:

如果不好就把关于[v-cloak]那段css代码写在style标签下的第一位,像上面的例子那样。

Logo

前往低代码交流专区

更多推荐