1. 程式人生 > 其它 >vue.js 鍵名 鍵值 鍵索引

vue.js 鍵名 鍵值 鍵索引

技術標籤:vue.js

<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8" />
		<meta name="viewport" content="width=device-width, initial-scale=1">
		<title></title>
		<script type="text/javascript" src="./vue.min.js"
></script> </head> <body> <div v-for="i in json">{{$key}}=>{{i}}=>{{$index}}</div> <script type="text/javascript"> new Vue( { el:'body', data:{ arr:['a','b','c'], json:{ leo:'12', sky:'22', mot:
'33' } } } ); </script> </body> </html>

解釋:

鍵名:{{KaTeX parse error: Expected 'EOF', got '}' at position 4: key}̲} 鍵值:{{i}} 鍵索引:…index}}

效果:

在這裡插入圖片描述