使用Laravel Chartjs创建图表动画

I am creating chart using chartJs Laravel (docs: https://charts.erik.cat/). I would like to make animation to chart but it seems that it is not supported. But in chartJs documentation is supported animation.

Controller

 $chart = new CoursesDoneChart();
        $chart->labels(['Dokončené kurzy', 'Nedokončené kurzy']);
        $chart->minimalist('false');
        $chart->title($subject->name, '18');
        $chart->dataset('Course dataset', 'doughnut', [$percentageByDoneCourses, $percentageAllCourses])->options([
            'backgroundColor' => ['#ff0000', '#ff9999'],
            'color' => ['#ff0000', '#ff9999'],

        ]);

Blade

   <div id="chart">
        {!! $chart->container() !!}
        </div>
        <script src="https://unpkg.com/vue"></script>
        <script>
            var app = new Vue({
                el: '#chart',
            });
        </script>
        <script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.7.1/Chart.min.js" charset="utf-8"></script>
        {!! $chart->script() !!}

Does anybody know how to do animation in ChartJs using Laravel, please? thank you!!