Stosując Vue (^ 2.0.0-rc.6) + Browserify, wejście jest index.js:Vue JS 2.0 nie renderuje niczego?
import Vue from 'vue'
import App from './containers/App.vue'
new Vue({ // eslint-disable-line no-new
el: '#root',
render: (h) => h(App)
})
App.vue:
<template>
<div id="root">
<hello></hello>
</div>
</template>
<script>
import Hello from '../components/Hello.vue'
export default {
components: {
Hello
}
}
</script>
<style>
body {
font-family: Helvetica, sans-serif;
}
</style>
Hello.vue:
<template>
<div class="hello">
<h1>\{{ msg }}</h1>
</div>
</template>
<script>
export default {
data() {
return {
msg: 'Hello Vue!'
}
}
}
</script>
Pusty biały ekran, czy coś przeoczyłem?
EDIT:
HTML wejście jest tylko <div id="root"></div>
, brak błędów w dziennikach konsoli i jestem całkiem pewny Hello.vue jest ładowany od console.log('test')
że na konsoli pojawia się plik.
EDIT 2:
Znaleziony błąd:
[Vue warn]: You are using the runtime-only build of Vue where the template option is not available. Either pre-compile the templates into render functions, or use the compiler-included build. (found in anonymous component - use the "name" option for better debugging messages.)
Czy to znaczy, że muszę użyć rozwiązanie WebPACK? Nie można użyć standardowego HTML?
ROZWIĄZANIE: importu Vue z 'vue/dist/vue.js'
Wystarczy, aby się upewnić. Podczas korzystania z pakietu internetowego zaleca się zmianę konfiguracji sieci Web zamiast "import Vue z" vue/dist/vue.js'' https://github.com/vuejs/vue/wiki/Vue-2.0-RC-Starter-Resources # standalone-vs-runtime-builds –
Złóż odpowiedź za pomocą rozwiązania i zaakceptuj ją, proszę). –
Jeśli odpowiedziałeś na własne pytanie, możesz opublikować odpowiedź poniżej i zaakceptować ją lub usunąć swoje pytanie. Nie robimy "SOLVED" w tytule – j08691