hal/hal-core/resources/web/js/vue/App.js

17 lines
252 B
JavaScript
Raw Normal View History

2024-03-15 00:17:15 +01:00
import AlertList from 'AlertListComponent'
export default {
data() {
return {
}
},
components: {
AlertList,
},
template: `
<div class="container col-md-12">
<AlertList />
<router-view></router-view>
</div>`
}