mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
17 lines
292 B
Vue
17 lines
292 B
Vue
<template>
|
|
<div id="app">
|
|
<persons_associated></persons_associated>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import persons_associated from './components/PersonsAssociated.vue'
|
|
|
|
export default {
|
|
name: 'app',
|
|
components: {
|
|
persons_associated,
|
|
}
|
|
}
|
|
</script>
|