npm run devでプロジェクトを立ち上げました。
SPAを作成中なのですが背景画像を取り込みたいと思い、static下に画像をおきました。
static/IMG_2209.JPG
のような感じです。
(参考:https://qiita.com/skmtko/items/a83f836b48f24309916d)
こちらを参考にしたのですが、一向に画像が表示されません。
エラーは発生してないです。
どうすれば改善できるでしょうか。
以下src/component/HelloWorld.vueのソースコードとなります。
コード <template> <div class="bg"> <h1>{{ msg }}</h1> <p>閲覧いただきありがとうございます。</p> </div> </template> <script> export default { name: 'HelloWorld', data () { return { msg: 'Welcome to my portfolio' } } } </script> <!-- Add "scoped" attribute to limit CSS to this component only --> <style scoped> h1 { font-weight: bold; } .bg { background-image: url("/IMG_2209.JPG"); } </style>
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。