-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path作用域插槽.html
42 lines (42 loc) · 1.02 KB
/
作用域插槽.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
34
35
36
37
38
39
40
41
42
<!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>Document</title>
</head>
<body>
<div id="app">
<myson></myson>
<myson>
<template slot-scope='scope'>
{{scope.raw.join(',')}}
</template>
</myson>
<myson></myson>
</div>
<script src="vue.js"></script>
<script>
Vue.component('myson',{
data(){
return {
list:['html','js','php','java']
}
},
template :`
<div>
<slot :raw = 'list'>
<ul>
<li v-for='(item, index) in list' :key='index'>{{item}}</li>
</ul>
</slot>
</div>
`
});
let app = new Vue({
el:'#app'
})
</script>
</body>
</html>