File tree Expand file tree Collapse file tree 1 file changed +41
-0
lines changed
packages/@vue/cli-ui-addon-widgets/src/components Expand file tree Collapse file tree 1 file changed +41
-0
lines changed Original file line number Diff line number Diff line change
1
+ <template >
2
+ <div class =" nuxt" >
3
+ <ItemLogo
4
+ image =" https://avatars2.githubusercontent.com/u/23360933?s=200&v=4"
5
+ class =" icon"
6
+ />
7
+
8
+ <div class =" message" >
9
+ Is Nuxt 2.0 released yet?
10
+ </div >
11
+ <div class =" status" >
12
+ {{ widget.data.config.released ? 'YES' : 'Not yet' }}
13
+ </div >
14
+ </div >
15
+ </template >
16
+
17
+ <script >
18
+ export default {
19
+ inject: [
20
+ ' widget'
21
+ ]
22
+ }
23
+ </script >
24
+
25
+ <style lang="stylus" scoped>
26
+ @import "~@vue/cli-ui/src/style/imports"
27
+
28
+ .nuxt
29
+ v-box ()
30
+ box-center ()
31
+
32
+ .icon
33
+ margin-bottom $padding-item
34
+ margin-right 0
35
+
36
+ .message
37
+ margin-bottom ($padding-item / 2 )
38
+
39
+ .status
40
+ font-size 24px
41
+ </style >
You can’t perform that action at this time.
0 commit comments