Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>插槽</title>
  <script src="https://cdnjs.cloudflare.com/ajax/libs/vue/2.0.3/vue.js"></script>
   
</head>
<body>
  <div id="app">
    <child>
      <h1>yao</h1>
    </child>
  </div>
  <script>
    Vue.component('child',{
      props: ['content'],
      template: '<div><p>hello</p><slot>默认内容</slot></div>'
    })
    var vm = new Vue({
      el: "#app"
    })
  </script>
</body>
</html>
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
evenyaopro
0viewers