LangCustom.vue 623 B

12345678910111213141516171819202122232425262728293031
  1. <template>
  2. <main class="app-main">
  3. <router-tab :i18n="customLanguage" />
  4. </main>
  5. </template>
  6. <script>
  7. export default {
  8. name: 'LangCustom',
  9. data () {
  10. return {
  11. customLanguage: {
  12. tab: {
  13. untitled: 'Untitled Page'
  14. },
  15. contextmenu: {
  16. refresh: 'Refresh This',
  17. refreshAll: 'Refresh All',
  18. close: 'Close This',
  19. closeLefts: 'Close to the Left',
  20. closeRights: 'Close to the Right',
  21. closeOthers: 'Close Others'
  22. },
  23. msg: {
  24. keepOneTab: 'Keep at least 1 tab'
  25. }
  26. }
  27. }
  28. }
  29. }
  30. </script>