Skip to content
Snippets Groups Projects
App.vue 774 B
Newer Older
<template>
  <div id="app">
    <!--    <img alt="logo" src="./assets/dd-code-1.png" width="200">-->
    <a href="/">
moon's avatar
moon committed
      <img
        alt="logo"
        src="./assets/dd-code-logo.png"
      >
    <!--<h1>DD-CODE Development Project</h1>-->
moon's avatar
moon committed
    <links />
    <router-view />
    <footers />
  </div>
</template>

<script>
moon's avatar
moon committed
import Links from '@/components/Links.vue';
import Footers from '@/components/Footers.vue';

export default {
moon's avatar
moon committed
  name: 'DdCode',
  components: {
moon's avatar
moon committed
    Links, Footers
moon's avatar
moon committed
    this.$store.dispatch('User/tryLogin');
</script>

<style>
#app {
moon's avatar
moon committed
  font-family: 'Avenir', Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #2c3e50;
  margin-top: 10px;
}
</style>