7 lines
200 B
JavaScript
7 lines
200 B
JavaScript
import { Alpine, Livewire } from '../../vendor/livewire/livewire/dist/livewire.esm';
|
|
import './bootstrap';
|
|
import trendChart from './chart';
|
|
|
|
Alpine.data('trendChart', trendChart);
|
|
|
|
Livewire.start();
|