diff --git a/apps/vue-storybook/.storybook/_mock-components.js b/apps/vue-storybook/.storybook/_mock-components.js index 076fa55a..387d7a50 100644 --- a/apps/vue-storybook/.storybook/_mock-components.js +++ b/apps/vue-storybook/.storybook/_mock-components.js @@ -1,6 +1,7 @@ // import and assign mock components import { action } from '@storybook/addon-actions' import DsnWidget from '@explorer-1/vue/src/components/DsnWidget/DsnWidget.vue' +import AsteroidWatchWidget from '@explorer-1/vue/src/components/AsteroidWatchWidget/AsteroidWatchWidget.vue' export default (app) => { // nuxt-link mock component @@ -27,4 +28,7 @@ export default (app) => { // use static dsn widget instead of fetch app.component('FetchDsnWidget', DsnWidget) + + // use static asteroid watch widget instead of fetch + app.component('FetchAsteroidWatchWidget', AsteroidWatchWidget) } diff --git a/packages/vue/src/templates/www/PageAsteroidWatchContent/PageAsteroidWatchContent.vue b/packages/vue/src/templates/www/PageAsteroidWatchContent/PageAsteroidWatchContent.vue index d90c4a7e..d057a128 100755 --- a/packages/vue/src/templates/www/PageAsteroidWatchContent/PageAsteroidWatchContent.vue +++ b/packages/vue/src/templates/www/PageAsteroidWatchContent/PageAsteroidWatchContent.vue @@ -1,3 +1,21 @@ + -