You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 4, 2024. It is now read-only.
As a simple example, I modify vue-static/src/app/index.js like this:
import Vue from 'vue'
import router from './router'
import store from './store'
import VueUi from '@vue/ui'
import '../lib/github.com/vuejs/ui/0.2.5/vue-ui.css!css'
Vue.use(VueUi)
new Vue({
el: '#app',
router,
store,
template: '<VueLoadingBar unknown/>'
})
However, it gives me error:
vue.js:597 [Vue warn]: Unknown custom element: <VueLoadingBar> - did you register the component correctly? For recursive components, make sure to provide the "name" option.
(found in <Root>)
warn @ vue.js:597
This is an awesome library, but I faild to use it for my site https://github.com/moyummy/vue-static
As a simple example, I modify
vue-static/src/app/index.js
like this:However, it gives me error:
I checked
_installedPlugins
in consoleThis is different from when I imported it and made it work through html script tag
Could anybody provide some suggestions? Thanks.
The text was updated successfully, but these errors were encountered: