Tugas 3 - MSIM4401
Tugas 3 - MSIM4401
async getRes() {
const response = await axios.get(this.theUrl);
return response;
}
}
path: "/",
redirect: "/home",
},
{
path: "/home",
name: "Home",
component: HomePage,
},
];
<script lang="ts">
import { IonContent, IonPage, IonButton } from '@ionic/vue';
import { defineComponent } from 'vue';
import EndPointAccess from '@/services/EndPointAccess';
MSIM4401 - Tugas 3 / Indra Lingga Saputra - 043912294
<style scoped>
#container {
text-align: center;
#container strong {
font-size: 20px;
line-height: 26px;
}
#container p {
font-size: 16px;
line-height: 22px;
color: #8c8c8c;
margin: 0;
}
#container a {
text-decoration: none;
}
.center {
margin-left: auto;
margin-right: auto;
}
MSIM4401 - Tugas 3 / Indra Lingga Saputra - 043912294
ion-button {
padding: 10px;
}
table {
width: 100%;
table-layout: fixed;
background-color: #fff2cc;
}
tr {
border: 2px solid #E5CC81;
border-bottom: thin;
padding: 5px;
}
span {
padding: 1px;
}
td {
padding: 2px;
margin-bottom: auto;
}
.top {
display: block;
font-size: smaller;
font-weight: 500;
}
.bottom {
display: block;
font-size: x-large;
font-weight: 500;
}
</style>