Is there a problem with mpvue displaying elements based on variables?

<template>
  <div class="ts">
    <div :class="{"show": language === "zh"}">zh</div>
    <div :class="{"show": language !== "zh"}">en</div>
  </div>
</template>

export default {
  data() {
    return {
      language: "zh"
    };
  },
  ...

.ts>div{display:none}
.ts>div.show{display:block}
The

page always displays en, first and then zh,. I have set the default value for language to zh,. Why is this happening?

Apr.01,2021
MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b2c1fb-2bae8.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b2c1fb-2bae8.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?