vue slot 는 하위 구성 요소 에 부모 구성 요소 가 전달 하 는 템 플 릿 을 표시 합 니 다.

부모 구성 요 소 는 slot 속성 이 지정 되 지 않 았 습 니 다.기본 값 은 default 입 니 다.
slot 에서 기본 값 을 사용 할 수 있 습 니 다.부모 구성 요소 가 해당 하 는 slot 를 전달 하지 않 으 면 기본 값 이 표 시 됩 니 다.

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <script src="vue.js" charset="utf-8"></script>
</head>
<body>
  <div id="app">
    <modal>
      <!--          -->
      <h1 @click='click'>aaa</h1></modal>
    <modal>
      <h2>bbb</h2></modal>
    <modal>
      <!--   slot        ,       slot  -->
      <p slot='title'>hello</p>
      <p slot='content'>
        world
      </p>
    </modal>
    <modal></modal>
  </div>
  <template id="modal">
    <!--   slot                 -->
      <div>
        modal
        <slot name='default'>            </slot>
      <h1>
        title:
        <slot name='title'>
        </slot>
      </h1>
      content:
      <slot name='content'></slot>
      </div>
    </template>
  <script type="text/javascript">
    let modal = {
      template: '#modal'
    }
    new Vue({
      el: '#app',
      components: {
        // es    ,        
        // modal:modal
        modal
      },
      methods: {
        click() {
          console.log('aaa')
        }
      }
    })
  </script>
</body>
</html>
총결산
위 에서 말 한 것 은 소 편 이 소개 한 vue slot 가 하위 구성 요소 에 부모 구성 요소 가 전달 하 는 템 플 릿 을 표시 하 는 것 입 니 다.여러분 에 게 도움 이 되 기 를 바 랍 니 다.궁금 한 점 이 있 으 면 메 시 지 를 남 겨 주세요.소 편 은 제때에 답 해 드 리 겠 습 니 다.여기 서도 저희 사이트 에 대한 여러분 의 지지 에 감 사 드 립 니 다!

좋은 웹페이지 즐겨찾기