-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (32 loc) · 957 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>DIY-Vue</title>
</head>
<body>
<div id="app"></div>
<!-- <div ref="app=3" id="app" s="<>" b="''" c='""' v-cloak :b="3">
<h1>{{title}}</h1>
<p>时间: {{info.time}}</p>
<input v-model="123">
<input type="password" v-model="123" />
<h2>{{info.my}}</h2>
<p>
作者姓名: <span style="color: red;">{{info.author.name}}</span>
年龄: <span style="font-size: 18px;">{{info.author.age}}</span>
</p>
<h2 v-if="showComputed">数量: {{count}} ({{text}})</h2>
<ul>
<li v-for="({id}, index) in list">{{id}}
</ul>
<Child>
<template v-for="({id}, index) in list" slot-scope="row" slot="div"><div>hhh {{index}}</div></template>
</Child>
{{arr[2]}}
<hr>
</div> -->
</body>
</html>