Galleria fixes
parent
73df518f6b
commit
02f1c439e7
5
app.vue
5
app.vue
|
@ -79,3 +79,8 @@ export default {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
<style lang="scss">
|
||||||
|
@import '@/assets/styles/landing/landing.scss';
|
||||||
|
@import '@/assets/styles/app/app.scss';
|
||||||
|
</style>
|
||||||
|
|
|
@ -20,11 +20,11 @@
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import DomHandler from '@/components/utils/DomHandler';
|
import DomHandler from '@/components/utils/DomHandler';
|
||||||
import AppTopBar from './AppTopBar.vue';
|
|
||||||
import AppMenu from './AppMenu.vue';
|
|
||||||
import AppFooter from './AppFooter.vue';
|
|
||||||
import AppConfigurator from './AppConfigurator.vue';
|
import AppConfigurator from './AppConfigurator.vue';
|
||||||
|
import AppFooter from './AppFooter.vue';
|
||||||
|
import AppMenu from './AppMenu.vue';
|
||||||
import AppNews from './AppNews.vue';
|
import AppNews from './AppNews.vue';
|
||||||
|
import AppTopBar from './AppTopBar.vue';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
data() {
|
data() {
|
||||||
|
@ -127,7 +127,3 @@ export default {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss">
|
|
||||||
@import './assets/styles/app/app.scss';
|
|
||||||
</style>
|
|
||||||
|
|
|
@ -13,12 +13,12 @@ export default defineNuxtConfig({
|
||||||
{
|
{
|
||||||
id: 'home-table-link',
|
id: 'home-table-link',
|
||||||
rel: 'stylesheet',
|
rel: 'stylesheet',
|
||||||
href: 'styles/landing/themes/lara-light-blue/theme.css'
|
href: '/styles/landing/themes/lara-light-blue/theme.css'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: 'theme-link',
|
id: 'theme-link',
|
||||||
rel: 'stylesheet',
|
rel: 'stylesheet',
|
||||||
href: `themes/lara-light-blue/theme.css`
|
href: `/themes/lara-light-blue/theme.css`
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
|
@ -107,8 +107,3 @@ export default {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss">
|
|
||||||
@import '@/assets/styles/landing/landing.scss';
|
|
||||||
@import '@/assets/styles/app/app.scss';
|
|
||||||
</style>
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
export default class PhotoService {
|
export default class PhotoService {
|
||||||
getImages() {
|
getImages() {
|
||||||
return fetch('demo/data/photos.json')
|
return fetch('/demo/data/photos.json')
|
||||||
.then((res) => res.json())
|
.then((res) => res.json())
|
||||||
.then((d) => d.data);
|
.then((d) => d.data);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue