Skip to content

Commit 60d43a5

Browse files
AndyAndy
authored andcommitted
starting
1 parent cd1110d commit 60d43a5

File tree

4 files changed

+26
-150
lines changed

4 files changed

+26
-150
lines changed

src/components/AppHeader.vue

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
<template>
2+
<div class="app-header">
3+
<button v-show="loggedIn">Logout</button>
4+
</div>
5+
</template>
6+
7+
<script>
8+
export default {
9+
data() {
10+
return {
11+
loggedIn: false
12+
}
13+
}
14+
}
15+
</script>
16+
17+
<style scoped>
18+
.app-header {
19+
min-height: 40px;
20+
padding: 0.2em 1em;
21+
background: white;
22+
}
23+
button {
24+
float: right;
25+
}
26+
</style>

src/components/HelloWorld.vue

Lines changed: 0 additions & 138 deletions
This file was deleted.

tests/unit/AppHeader.spec.js

Whitespace-only changes.

tests/unit/example.spec.js

Lines changed: 0 additions & 12 deletions
This file was deleted.

0 commit comments

Comments
 (0)