作用域插槽,用来属性插入

Posted xiannv

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了作用域插槽,用来属性插入相关的知识,希望对你有一定的参考价值。

<!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>
<script src="https://cdn.bootcss.com/vue/2.6.10/vue.js"></script>
<link href="https://cdn.bootcss.com/twitter-bootstrap/4.3.1/css/bootstrap.css" rel="stylesheet">
<link href="https://cdn.bootcss.com/animate.css/3.7.1/animate.css" rel="stylesheet">
<style>



</style>
</head>

<body>
<div id="app">

<index>
<p slot-scope="obj">版权所有obj.title</p>
</index>

</div>


<script>
Vue.component(‘index‘,
template:`
<div>
index
<slot title="这是尾巴"></slot>
</div>
`
)
var vm = new Vue(
el: ‘#app‘,
data:
flag: true
,
 

 

);
</script>

</body>

</html>

以上是关于作用域插槽,用来属性插入的主要内容,如果未能解决你的问题,请参考以下文章

语法糖&具名插槽&作用域插槽&混入

Vue组件之作用域插槽

Vue组件之作用域插槽

具名插槽作用域插槽的新写法

作用域插槽

vue中插槽作用域的使用