Skip to content
Snippets Groups Projects
Forked from Språksamlingane / beta.ordbok.uib.no
2262 commits behind the upstream repository.
App.vue 561 B
<template>
  <div id="app">
    <img alt="Vue logo" src="./assets/logo.png">
    <Article :article_id="article_id" />
  </div>
</template>

<script>
import Article from './components/Article.vue'

export default {
  name: 'app',
  data: function() {
    return {
      article_id: 15544
    }
  },
  components: {
    Article
  }
}
</script>

<style>
#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;
}
</style>