show.blade.php 487 B

123456789101112131415161718192021
  1. @extends('layouts.app')
  2. @section('title')详情-教程@endsection
  3. @section('content')
  4. <div class="card card-body container col" id="body">
  5. <div class="col-8 offset-2" id="content" v-html="content.trix_rich_text.content"></div>
  6. </div>
  7. @endsection
  8. @section('lastScript')
  9. <script>
  10. new Vue({
  11. el:'#body',
  12. data:{
  13. content:{!! $tutorial !!},
  14. },
  15. mounted(){
  16. }
  17. });
  18. </script>
  19. @stop