Flicker problem of Vue

Vue has to go through a series of operations, first load the template before rendering data,
solution :
can let the page load data after the display

<div v-clock>
   {{message}}
</div>
 <style>
       [v-clock]{
           display: none;
       }
   </style>

Read More: