使用vue.js做一個todolist1時,頁面無法達到理想效果。不知道是什么原因,該怎么解決呢?
<template>
? <div id="app">
? ? ?<h1 v-text="title"></h1>
? </div>
</template>
<script>
? ? export default {
? ? ? ? data: function() {
? ? ? ? ? ? return {
? ? ? ? ? ? ? ? title: 'this is a todo list'
? ? ? ? ? ? }
? ? ? ? }
? ? }
</script>
2016-10-24
我也出現過這個問題,可能是你的webstorm版本低 或者是你沒設置vue文件高亮,又或者是你沒有設置其可以使用es6的一些語法
2016-11-22
語法出錯
2016-09-18
效果是什么呢?