|
|
请使用QQ关联注册PLM之家,学习更多关于内容,更多精彩原创视频供你学习!
您需要 登录 才可以下载或查看,没有账号?注册
x
* B, _& c. ?/ R p# \7 d, oVuejs 挂载点 模板 实例和实例中的数据,事件和方法
8 a+ y- P1 b: R9 N% ]$ Y
8 z: W2 Q! R! r. \) j<!DOCTYPE html>. d) C' a! m9 r/ o) L
<html lang="en">, F2 R0 j! t2 @
<head>
$ C! D) w4 M# E- R) X <meta charset="UTF-8">
- h0 X+ y3 }# O7 u" r! E; H <title>Vue start</title>" q2 k- K- K9 h" a& X
<script src="./vue.js"></script>
1 `6 L: Z0 [# H/ E8 B# K' a</head>
( {3 k! E) V0 f J8 U- y+ d: t8 O
1 H+ ~7 j+ \" H% l<body>) ]+ [. Q# t3 o6 Q! H2 t
<div id="root">{{message}}& a# y1 s( D2 c/ K8 E$ Q
<h1 @click="changeword()">hello {{word}}</h1>/ U" |+ l4 z7 \# Y
{{number}}# v; [7 R4 n0 X* t5 P; F) X$ t
<h1 v-text="number"></h1>
9 a' _, t- ?5 p4 s <h1 v-html="content"></h1># U. s+ D& g5 h' x& l6 G
</div>
& V1 W9 F0 o! P) a" [& } S* } <script>! T/ Y& I7 D4 s& }% E
new Vue({
, G: L( ?0 J' A" ` el: "#root", y" b5 B6 o1 i) n R: U2 t' s
// template:"<h1>template can be here<h1>",
7 f3 O+ T, H8 U$ g& p9 ? data: {
4 Y; v& j6 l) t, z: b$ P# g message: 'hello world',4 z1 F) k& N$ j* W) U
word:'plmhome',) a e5 P8 e& F# @1 Y1 l+ T
number: 123,; j! Y: W8 N$ O0 q
content:"<h2>hello world<h2>"- v) E Y: _. J
},
6 {; K' y2 n: m, Y* o methods: {
2 @! C" G8 Y5 ^7 x/ y; ]) R changeword(){: Q- B' d% O+ t
this.word = "plmhome.com" //change the word
. _- b. z- G/ f; `7 z& } }
, v* x q: ?9 ^! ^ }
% l/ B6 l- g W })+ B# A4 T/ h- U" x. }& n2 t
</script>
* B- G( I9 h: c3 [; Y5 A; F; l3 f2 r) t
</body>. ]2 b7 l; T6 l# |; E
4 Q# H6 ]" p/ \5 {
</html>
( P- L9 c. E8 f6 | B- u/ i
/ A* ?9 p! E6 i% y8 s- ~1 J8 m) @$ ]
# u, O4 Z0 |4 }0 q |
|