[+] Create title div

This commit is contained in:
Hykilpikonna
2019-12-22 22:05:02 -05:00
parent 78e08a93e1
commit 15690037df
+24 -16
View File
@@ -1,26 +1,34 @@
<template>
<div id="app">
<img alt="Vue logo" src="./assets/logo.png">
</div>
<div id="app">
<div id="title">
</div>
</div>
</template>
<script lang="ts">
import {Component, Vue} from 'vue-property-decorator';
import {Component, Vue} from 'vue-property-decorator';
@Component
export default class App extends Vue
{
@Component
export default class App extends Vue
{
}
}
</script>
<style lang="scss">
#app {
font-family: 'Avenir', Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-align: center;
color: #2c3e50;
margin-top: 60px;
}
#app
{
font-family: 'Avenir', Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-align: center;
color: #2c3e50;
margin-top: 60px;
}
#title
{
}
</style>