mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 08:33:53 +00:00
566fa85fc8
Co-authored-by: Julien Huang <julien.huang@outlook.fr>
14 lines
942 B
Vue
14 lines
942 B
Vue
<script setup lang="ts">
|
|
import { componentNames } from '#components'
|
|
console.log(componentNames)
|
|
// @ts-expect-error this is not usable outside a pages directory
|
|
definePageMeta({
|
|
// this should be fully tree-shaken out
|
|
title: 'jet common fruit chose bright planning exercise herself position wealth stiff known prepare listen leader eleven found boat dollar eye come author won thought pony biggest feel organized die vast class ask cost ball wrong chicken origin model little properly dangerous dull corner jar mighty solution pilot city locate guide gradually affect curve about snake single silly against fireplace money another involved origin sport where thin stop question go stretch although arrow rush mixture fallen power pay fifteen layers play slightly heavy built needed sing sentence diagram quarter yesterday list faster been having construction curious shoe'
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<div>Hello World!</div>
|
|
</template>
|