T-kazu1234
12/24/2019 - 10:32 PM

VueでFetchAPIを使用する例

new Vue({
    el: '#app',
    mounted () {
      fetch(
        "https://script.google.com/macros/s/AKfycbwpMKf5237VlebQuUNjHKYGvLrOi3bdGV1Oa2CKsKAMmv_-mpM/exec",
      )
        .then(res => res.json())
        .then(result => {
          var game = enchant.Core.instance;
          game.scene_datas = result;
        },);
    }
  })