0

新しいプロジェクトでは、私のアプリは ExpressJs サーバー上の VueJS (2.5.13) でルート要素を見つけられません。

私のindex.html:

<html>
    <head>
        <title>Test</title>
    </head>
    <body>
        <div id="app"></div>
        <script src="dist/index.js"></script>
    </body>
</html>

私のjsエントリポイント:

import Vue from 'vue'
import App from './App'

new Vue({
   render: h => h(App)
}).$mount('#app')

そして、私の非常に基本的な App.vue:

<template>
    <div>
        Hello the world
    </div>
</template>
<script>
    export default {
        name: 'app'
    }
</script>
<style>
</style>

私はbabel-loaderとwebpackを使用しています。#appVue がidを見つけられない理由がわかりません。

あなたの助けをthx

4

1 に答える 1