★axios mixed contens エラー

qiita.com

methods: {
      async fetchPhotos () {
        // const response = await axios.get(`/api/images/?page=${this.page}`) // MixedContentエラー httpになる
        const response = await axios.get(`/api/images`,
            {
              params: {
                // ここにクエリパラメータを指定する
                page: this.page // このようにパラメータを付けるとhttpsになる
              }
            }
        )
     }
}