<style type="text/css"> [v-cloak] { display: none; } </style>
<div id="app" v-cloak> <h1>{{message}}</h1> <h1>{{name}}</h1> </div>
原因:由于JavaScript去操作DOM,都会等待DOM加载完成(DOM ready)。对于vuejs、angularjs这些会在DOM ready完会才回去解析html view Template,
<style type="text/css"> [v-cloak] { display: none; } </style>
<div id="app" v-cloak> <h1>{{message}}</h1> <h1>{{name}}</h1> </div>
原因:由于JavaScript去操作DOM,都会等待DOM加载完成(DOM ready)。对于vuejs、angularjs这些会在DOM ready完会才回去解析html view Template,