File tree 3 files changed +5
-2
lines changed
3 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -185,7 +185,7 @@ module.exports = __webpack_require__(13);
185
185
/***/ ( function ( module , exports , __webpack_require__ ) {
186
186
187
187
Nova . booting ( function ( Vue , router , store ) {
188
- Vue . component ( "index-simple-link-button" , __webpack_require__ ( 3 ) ) ;
188
+ Vue . component ( "index-simple-link-button" , __webpack_require__ ( 3 ) . default ) ;
189
189
} ) ;
190
190
191
191
/***/ } ) ,
Original file line number Diff line number Diff line change 1
1
Nova . booting ( ( Vue , router , store ) => {
2
- Vue . component ( "index-simple-link-button" , require ( "./components/IndexField" ) ) ;
2
+ Vue . component ( "index-simple-link-button" , require ( "./components/IndexField" ) . default ) ;
3
3
} ) ;
Original file line number Diff line number Diff line change @@ -72,18 +72,21 @@ public function attributes($attributes)
72
72
public function classes ($ classes )
73
73
{
74
74
$ this ->classes = $ classes ;
75
+
75
76
return $ this ;
76
77
}
77
78
78
79
public function style ($ style )
79
80
{
80
81
$ this ->style = $ style ;
82
+
81
83
return $ this ;
82
84
}
83
85
84
86
public function type ($ type )
85
87
{
86
88
$ this ->type = $ type ;
89
+
87
90
return $ this ;
88
91
}
89
92
You can’t perform that action at this time.
0 commit comments