Target removed. Intro moved to landing
parent
384e9e93ac
commit
5ce92f674e
|
@ -7,7 +7,6 @@ const baseUrl = process.env.NODE_ENV === 'production' ? '/primevue-nuxt/' : '/';
|
||||||
export default defineNuxtConfig({
|
export default defineNuxtConfig({
|
||||||
typescript: false,
|
typescript: false,
|
||||||
components: true,
|
components: true,
|
||||||
target: 'static',
|
|
||||||
app: {
|
app: {
|
||||||
baseURL: baseUrl,
|
baseURL: baseUrl,
|
||||||
head: {
|
head: {
|
||||||
|
|
|
@ -13,7 +13,6 @@
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { defineAsyncComponent } from 'vue';
|
|
||||||
import BlockSection from './landing/BlockSection';
|
import BlockSection from './landing/BlockSection';
|
||||||
import ComponentSection from './landing/ComponentSection';
|
import ComponentSection from './landing/ComponentSection';
|
||||||
import DesignerSection from './landing/DesignerSection';
|
import DesignerSection from './landing/DesignerSection';
|
||||||
|
@ -22,6 +21,8 @@ import FooterSection from './landing/FooterSection';
|
||||||
import TemplateSection from './landing/TemplateSection';
|
import TemplateSection from './landing/TemplateSection';
|
||||||
import ThemeSection from './landing/ThemeSection';
|
import ThemeSection from './landing/ThemeSection';
|
||||||
import UsersSection from './landing/UsersSection';
|
import UsersSection from './landing/UsersSection';
|
||||||
|
const Intro = defineAsyncComponent(() => import('./landing/Intro.vue'));
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
props: {
|
props: {
|
||||||
theme: {
|
theme: {
|
||||||
|
@ -81,7 +82,7 @@ export default {
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
components: {
|
components: {
|
||||||
Intro: defineAsyncComponent(() => import('./Intro.vue')),
|
Intro,
|
||||||
ComponentSection,
|
ComponentSection,
|
||||||
ThemeSection,
|
ThemeSection,
|
||||||
BlockSection,
|
BlockSection,
|
||||||
|
|
|
@ -8,8 +8,8 @@
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import AppNews from '@/layouts/AppNews';
|
import AppNews from '@/layouts/AppNews';
|
||||||
import HeaderSection from './landing/HeaderSection';
|
import HeaderSection from './HeaderSection';
|
||||||
import HeroSection from './landing/HeroSection';
|
import HeroSection from './HeroSection';
|
||||||
export default {
|
export default {
|
||||||
methods: {
|
methods: {
|
||||||
onThemeToggle() {
|
onThemeToggle() {
|
Loading…
Reference in New Issue