17 lines
199 B
Vue
17 lines
199 B
Vue
|
<template>
|
||
|
<v-app>
|
||
|
<Caesar></Caesar>
|
||
|
</v-app>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import Caesar from "./views/Caesar.vue";
|
||
|
|
||
|
export default {
|
||
|
name: "App",
|
||
|
components: {Caesar}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
|