This repository has been archived on 2021-09-06. You can view files and clone it, but cannot push or open issues or pull requests.
vuejs_course/2021-03-19_axios-01-start/src/components/dashboard/dashboard.vue

16 lines
240 B
Vue

<template>
<div id="dashboard">
<h1>That's the dashboard!</h1>
<p>You should only get here if you're authenticated!</p>
</div>
</template>
<style scoped>
h1, p {
text-align: center;
}
p {
color: red;
}
</style>