i cannot see the result as displayed in Creating Your Own App | Speckle Docs
now the serverUrl error i do not mind, but I cannot see the searchbar of the streams. I only see this:
Thanks @Dickels112 I see there are a few updates that can be made to that tutorial. Some clarifications and some updates as Vue-CLI has changed a few things.
The specific error you are finding can be solved with a change to the Home.vue script:
A quick step after that, in fact, will reveal that the version of timeago the tutorial mentions installs the one for Vue3 which since the doc was written has become default.
Another of the things I’ll be updating, but if you instead:
npm i vue2-timeago
npm uninstall vue-timeago
and then in StreamSearch.vue:
import { TimeAgo } from 'vue2-timeago'
.
.
}),
components: { TimeAgo }, // register the component
watch: {