question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Blank screen after updating version from 1.7.0 to 2.0.0?

See original GitHub issue

Node Version : v10.14.1 NPM Version : 6.4.1: OS: Windows

Description: I have integrated algolia in my vuejs project which is working very well. Now i am upgrading this module from version 1.7.0 to 2.0.0. On upgrading package, it shows console errors and nothing is displayed on screen. I also tried to solve it by including required packages but did’t get the results. Here are console errors:

[Vue warn]:Unknown custom element: <ais-index> - did you register the component correctly? For recursive components, make sure to provide the "name" option.
[Vue warn]: Unknown custom element: <ais-input> - did you register the component correctly? For recursive components, make sure to provide the "name" option
[Vue warn]: Error in nextTick: "TypeError: It looks like you forgot to wrap your Algolia search component "<ais-refinement-list>" inside of an "<ais-instant-search>" component."
TypeError: It looks like you forgot to wrap your Algolia search component "<ais-refinement-list>" inside of an "<ais-instant-search>" component.

Here is my code:

<template>
  <div id="app">
    <p>{msg}</p>
    <div id="app">
      <ais-index app-id="latency" api-key="6be0576ff61c053d5f9a3225e2a90f76" index-name="ikea">
        <ais-search-box placeholder="Search for a product..."></ais-search-box>
        <ais-results>
          <template scope="{ result }">
            <div class="search-result">
              <img class="result__image img-responsive" :src="result.image">

              <div class="result__info">
                <h2 class="result__name">
                  <ais-highlight :result="result" attribute-name="name"/>
                </h2>
                <div class="result__type">
                  <ais-highlight :result="result" attribute-name="type"/>
                </div>
                <div class="result__rating">
                  <template v-for="n in 5">
                    <span v-if="n <= result.rating" class="result__star"></span>
                    <span v-else class="result__star--empty"></span>
                  </template>
                </div>
                <div class="result__price">${{result.price}}</div>
              </div>
            </div>
          </template>
        </ais-results>
        <ais-pagination v-bind:class-names="{'ais-pagination': 'pagination'}"></ais-pagination>
      </ais-index>
    </div>
  </div>
</template>
<script>
//main.js 
import 'babel-polyfill'
import Vue from 'vue'
import Vuetify from 'vuetify'
import InstantSearch from 'vue-instantsearch'

//router 
import router from './router'
Vue.use(InstantSearch)

Vue.config.productionTip = false

new Vue({
	store,
	router,
	i18n,
	render: h => h(App)
}).$mount('#app')

What changes are required to make it work?

Issue Analytics

  • State:closed
  • Created 5 years ago
  • Comments:10 (10 by maintainers)

github_iconTop GitHub Comments

1reaction
Haroenvcommented, Mar 13, 2019

This should have been all the references. Thanks!

1reaction
uguraricicommented, Mar 12, 2019

Done!

Read more comments on GitHub >

github_iconTop Results From Across the Web

Blank screen after updating vue-instantsearch from version ...
Now i am upgrading this module from version 1.7.0 to 2.0.0. On upgrading package, it shows console errors and nothing is displayed on...
Read more >
Blank screen after updating to version 18.0.9 - ℹ️ Support
Support intro I tried update from version 17.0.9.2 to 18.0.9 and I stay stucked in blank screen. After running command sudo -u www-data...
Read more >
Black screen after update - Issues & Assistance
I recently installed garuda linux on a laptop. And when i update it, After a reboot i get stuck at a black screen....
Read more >
Errors after upgrade from 1.6.8 to 2.1.1 - ExpressionEngine
Chat with fellow EECMS users in the 'Errors after upgrade from 1.6.8 ... tables are converting to 2.0.0. the wizard went to a...
Read more >
3 Upgrade and Migration Issues for Oracle Identity and Access ...
OIM Middle Tier Online Upgrade Fails When Upgrading 11.1.1.7.0 ... applied to the existing Oracle Identity and Access Management 11g Release 2 (11.1.2.0.0) ......
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found