Vue cli3を試しているのですが、script部分にimport Vue from 'vue'を追加すると、描画されなくなります。
下記のソースはボタンで変数loadingを反転させ、loading...かその下の要素を表示させたかったものです。
しかし、import Vue from 'vue'を使用すると描画自体がされなくなってしまいました。
new Vueやv-showのせいかと思い、その部分を消した状態でも真っ白な画面でした。
ソースコードの一番下のscript内のようにimport Vue from 'vue'だけを記述している状態です。
chromeの検証ツールのconsoleのエラーは次にように出てきました。
Uncaught TypeError: Cannot set property 'render' of undefined
ご教授よろしくお願いいたします。
vue3
1<template> 2 <div id="app"> 3 <button v-on:click="loading = !loading">ボタン</button> 4 <div id="nav"> 5 <div v-show="!loading">loading...</div> 6 <div v-show="loading"> 7 <router-link to="/">Home</router-link> 8 <router-link to="/about">About</router-link> 9 <router-link to="/count">Count</router-link> 10 <router-view /> 11 </div> 12 </div> 13 </div> 14</template> 15 16<style lang="scss"> 17#app { 18 font-family: 'Avenir', Helvetica, Arial, sans-serif; 19 -webkit-font-smoothing: antialiased; 20 -moz-osx-font-smoothing: grayscale; 21 text-align: center; 22 color: #2c3e50; 23 z-index: -1; 24} 25button:active{ 26background-color: #2c3e50; 27} 28#nav { 29 padding: 30px; 30 a { 31 font-weight: bold; 32 color: #2c3e50; 33 &.router-link-exact-active { 34 color: #42b983; 35 } 36 } 37} 38</style> 39<script> 40import Vue from 'vue' 41/* 42new Vue({ 43 el: '#app', 44 data: { 45 loading: false 46 } 47})*/ 48</script> 49
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。