Mon Mar 25 2019
Copied to clipboard! Copy reply
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25

<i18n>
en:
  hello: "hello world!"
it:
  home:
    title: "italiano home"
    introduction: "home italinao intro"
</i18n>

<template>
 
  <nav>
    I'm a nav in {{ $t('home.title') }}
  </nav>
</template>

<script>


<style lang='stylus'>
nav
  background #eee
</style>