first commit

This commit is contained in:
2022-01-21 11:34:23 +01:00
commit bf2ef01f18
26 changed files with 17077 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
<template>
<div id="app">
<Countries />
</div>
</template>
<script>
import "bulma/css/bulma.css";
import Countries from "./view/Countries.vue";
export default {
name: "App",
components: {
Countries,
},
};
</script>
<style>
#app {
font-family: Avenir, Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
padding-top: 60px;
}
</style>