IE中的Vuejs模板

时间:2018-09-21 06:22:19

标签: laravel templates vue.js

在刀片视图中,我的代码如下:

<template v-if="section4">
   <div class="progress-item mt-3">
       <div class="progress-item-top text-align-center">
          <span>TITLE</span>
          @if($routeName === 'planner.home.show')
             <div>
                <a href="{{ route('planner.meeting.index', ['mypage'=>$mypage]) }}" class="btn btn-fill no_print">編集</a>
                <button class="btn btn-fill no_print" onclick="window.print();">印刷</button>
             </div>
          @endif
      </div>
      <div>
          @include('planner.Meeting.mtr4')
      </div> 
  </div>
</template>

它在Chrome中工作正常,但是当我在IE中测试时,它什么也没显示。

我尝试删除模板标签中的条件v-if,并且有效!
因此,我认为IE在 template v-if =“ condition” 上存在问题。
任何想法?谢谢!

1 个答案:

答案 0 :(得分:0)

是的,IE11不支持此标记ie.document.querySelector("[title='Log in']").Click (来自HTML5),只需将其更改为<template>标记即可,其工作方式相同。