| 123456789101112131415161718192021 |
- @extends('layouts.app')
- @section('title')详情-教程@endsection
- @section('content')
- <div class="card card-body container col" id="body">
- <div class="col-8 offset-2" id="content" v-html="content.trix_rich_text.content"></div>
- </div>
- @endsection
- @section('lastScript')
- <script>
- new Vue({
- el:'#body',
- data:{
- content:{!! $tutorial !!},
- },
- mounted(){
- }
- });
- </script>
- @stop
|