0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Nuxt3で初期ページの内容を変える

Posted at

Nuxt2の時と比べてインストール後のファイル構成が違いすぎて一瞬挫折しかけた。
でもここで諦めたら勉強にならないのでどうにか頑張る。

ルートにあるapp.vueを確認してみる。

<template>
  <div>
    <NuxtWelcome />
  </div>
</template>

これがlocalhostで表示されている画面のようだけど、このNuxtWelcomっていう
コンポネントっぽいファイルはどこで読み込まれている?

いろいろここに書いてあるっぽいので翻訳して読む。

app.vue

<template>
  <div>
   <h1>Welcome to the homepage</h1>
  </div>
</template>

公式にこんな記述があったので、書き直してみよう。
localhostで表示されたページにも以下のように書いてあるしねー。

Get started
Remove this welcome page by replacing in app.vue with your own code.

image.png

ほっほー、変わった。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?