YM
2024-05-29 d82733fc757f080c8910049ae12567454ee1aeac
src/books/English/view/components/chapter001.vue
@@ -450,16 +450,16 @@
          </p>
          <p>
            My
            <span class="word-bc" @click="saveWord('incredible')"
            <span class="word-bc" @click="saveWord($event,'incredible')"
              >incredible</span
            >
            journey to China started in 2017 when I got selected as a foreign
            student for PhD studies at one university.When I arrived in China,I
            was like Alice in Alice in Wonderland.I was curious about the
            people,the culture,the
            <span class="word-bc" @click="saveWord('cuisine')">cuisine</span>
            <span class="word-bc" @click="saveWord($event,'cuisine')">cuisine</span>
            and of course the huge variety of
            <span class="word-bc" @click="saveWord('landscapes')"
            <span class="word-bc" @click="saveWord($event,'landscapes')"
              >landscapes</span
            >.
          </p>
@@ -467,12 +467,12 @@
            I found many great people and made several Chinese friends along the
            way.These friends made me see China through the eyes of the locals.I
            always found Chinese people very friendly and
            <span class="word-bc" @click="saveWord('hospitable')"
            <span class="word-bc" @click="saveWord($event,'hospitable')"
              >hospitable</span
            >
            towards foreigners.These Chinese friends made my understanding of
            Chinese culture and
            <span class="word-bc" @click="saveWord('civilization')"
            <span class="word-bc" @click="saveWord($event,'civilization')"
              >civilization</span
            >
            much easier,enjoyable and memorable.I consider China my second home
@@ -480,7 +480,7 @@
          </p>
          <p>
            You cannot
            <span class="word-bc" @click="saveWord('explore')">explore</span>
            <span class="word-bc" @click="saveWord($event,'explore')">explore</span>
            China properly if you do not try its delicious variety of food.If
            you ate
          </p>
@@ -509,14 +509,14 @@
            a new kind of food every day for one whole year,the list of Chinese
            food would still never end! Though I love to eat almost all kinds of
            Chinese cuisine,I found Sichuan and Hunan cuisine quite
            <span class="word-bc" @click="saveWord('mouth-watering')"
            <span class="word-bc" @click="saveWord($event,'mouth-watering')"
              >mouth-watering</span
            >
            and
            <span class="word-bc" @click="saveWord('stimulating')"
            <span class="word-bc" @click="saveWord($event,'stimulating')"
              >stimulating</span
            >.For a
            <span class="word-bc" @click="saveWord('foodie')">foodie</span> like
            <span class="word-bc" @click="saveWord($event,'foodie')">foodie</span> like
            me,China is a heaven.I simply cannot live without Chinese food.
          </p>
          <p>
@@ -525,11 +525,11 @@
            its own story and history.From the big and advanced cities like
            Shanghai or Guangzhou to the ancient cities like Xi’an and
            Hangzhou,each city has its
            <span class="word-bc" @click="saveWord('unique')">unique</span>
            <span class="word-bc" @click="saveWord($event,'unique')">unique</span>
            <span
              class="word-bc"
              style="margin-left: 5px"
              @click="saveWord('atmosphere')"
              @click="saveWord($event,'atmosphere')"
              >atmosphere</span
            >
            that attracts you.I visited more than a dozen cities and came across
@@ -1317,44 +1317,44 @@
          </p>
          <div class="bk-wh">
            <p class="dl-box">
              <span class="word-bc mr-20 dl-span" @click="saveWord('exquisite')"
              <span class="word-bc mr-20 dl-span" @click="saveWord($event,'exquisite')"
                >exquisite</span
              >
              <span class="word-bc mr-20 dl-span" @click="saveWord('ancient')"
              <span class="word-bc mr-20 dl-span" @click="saveWord($event,'ancient')"
                >ancient</span
              ><span
                class="word-bc mr-20 dl-span"
                @click="saveWord('incredible')"
                @click="saveWord($event,'incredible')"
                >incredible</span
              ><span class="word-bc mr-20 dl-span" @click="saveWord('unique')"
              ><span class="word-bc mr-20 dl-span" @click="saveWord($event,'unique')"
                >unique</span
              ><span
                class="word-bc mr-20 dl-span"
                @click="saveWord('traditional')"
                @click="saveWord($event,'traditional')"
                >traditional</span
              ><span
                class="word-bc mr-20 dl-span"
                @click="saveWord('outstanding')"
                @click="saveWord($event,'outstanding')"
                >outstanding</span
              ><span
                class="word-bc mr-20 dl-span"
                @click="saveWord('mouth-watering')"
                @click="saveWord($event,'mouth-watering')"
                >mouth-watering</span
              ><span class="word-bc mr-20 dl-span" @click="saveWord('diverse')"
              ><span class="word-bc mr-20 dl-span" @click="saveWord($event,'diverse')"
                >diverse</span
              ><span
                class="word-bc mr-20 dl-span"
                @click="saveWord('hospitable')"
                @click="saveWord($event,'hospitable')"
                >hospitable</span
              ><span
                class="word-bc mr-20 dl-span"
                @click="saveWord('enjoyable')"
                @click="saveWord($event,'enjoyable')"
                >enjoyable</span
              ><span
                class="word-bc mr-20 dl-span"
                @click="saveWord('memorable')"
                @click="saveWord($event,'memorable')"
                >memorable</span
              ><span class="word-bc mr-20 dl-span" @click="saveWord('charming')"
              ><span class="word-bc mr-20 dl-span" @click="saveWord($event,'charming')"
                >charming</span
              >
            </p>
@@ -1886,8 +1886,8 @@
    this.getPath();
  },
  methods: {
    saveWord(word) {
      this.$emit("saveCharacters", word);
    saveWord(event,word) {
      this.$emit("saveCharacters", event,word);
    },
    setTestData() {
      localStorage.setItem("english-testOne", JSON.stringify(this.testData));