File tree Expand file tree Collapse file tree 4 files changed +36
-0
lines changed Expand file tree Collapse file tree 4 files changed +36
-0
lines changed Original file line number Diff line number Diff line change @@ -79,6 +79,10 @@ function nav() {
79
79
text : 'Ecosystem' ,
80
80
link : '/ecosystem/official'
81
81
} ,
82
+ {
83
+ text : 'Roadmap' ,
84
+ link : '/guide/roadmap'
85
+ } ,
82
86
{
83
87
text : 'v9.x' ,
84
88
items : [ { text : 'v8.x' , link : 'https://kazupon.github.io/vue-i18n/' } ] ,
@@ -107,6 +111,10 @@ function sidebarGuide() {
107
111
{
108
112
text : 'Installation' ,
109
113
link : '/guide/installation'
114
+ } ,
115
+ {
116
+ text : 'Roadmap' ,
117
+ link : '/guide/roadmap'
110
118
}
111
119
]
112
120
} ,
Original file line number Diff line number Diff line change
1
+ <script setup lang="ts">
2
+ import { computed } from ' vue'
3
+
4
+ const props = defineProps ({
5
+ token: { type: String ,
6
+ required: true
7
+ }
8
+ })
9
+ const src = computed (() => ` https://volta.net/embed/${props .token } ` )
10
+ </script >
11
+
12
+ <template >
13
+ <iframe :src =" src" class =" board" />
14
+ </template >
15
+
16
+ <style scoped>
17
+ .board {
18
+ height : calc (100vh / 1.5 );
19
+ width : 100% ;
20
+ }
21
+ </style >
Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ import Theme from 'vitepress/theme'
3
3
import HomeSponsors from './components/HomeSponsors.vue'
4
4
import AsideSponsors from './components/AsideSponsors.vue'
5
5
import Service from './components/Service.vue'
6
+ import VoltaBoard from './components/VoltaBoard.vue'
6
7
import { integrations } from './integrations'
7
8
import './styles/global.css'
8
9
@@ -16,5 +17,6 @@ export default {
16
17
} ,
17
18
enhanceApp ( { app, router, siteData } ) {
18
19
app . component ( 'IntegrationServices' , ( ) => integrations . map ( prop => h ( Service , prop ) ) )
20
+ app . component ( 'VoltaBoard' , VoltaBoard )
19
21
} ,
20
22
}
Original file line number Diff line number Diff line change
1
+ # Roadmap
2
+
3
+ Discover our kaban board for Vue I18n development status
4
+
5
+ <VoltaBoard token =" eyJzdGF0dXNlcyI6WyJ0cmlhZ2UiLCJiYWNrbG9nIiwidG9kbyIsImluX3Byb2dyZXNzIiwiaW5fcmV2aWV3IiwiZG9uZSIsInJlbGVhc2VkIiwiY2FuY2VsbGVkIl0sImZpbHRlcnMiOnt9LCJvd25lciI6ImludGxpZnkiLCJuYW1lIjoidnVlLWkxOG4tbmV4dCJ9 " />
You can’t perform that action at this time.
0 commit comments