File tree Expand file tree Collapse file tree 3 files changed +192
-192
lines changed Expand file tree Collapse file tree 3 files changed +192
-192
lines changed Original file line number Diff line number Diff line change 20
20
21
21
<v-row >
22
22
<v-col class =" v-col-12" >
23
- <PlaygroundPage />
23
+ <v-container >
24
+ <v-row class =" row mb-4" >
25
+ <PlaygroundPage />
26
+ </v-row >
27
+ </v-container >
24
28
</v-col >
25
29
</v-row >
26
30
</v-container >
Original file line number Diff line number Diff line change @@ -5,14 +5,19 @@ import { createPinia } from 'pinia';
5
5
import { registerPlugins } from '../../plugins' ;
6
6
import { FontAwesomeIcon } from '@fortawesome/vue-fontawesome' ;
7
7
import { makeServer } from '../../server' ;
8
+ import * as VInlineFields from '../../index' ;
8
9
9
- makeServer ( ) ;
10
+ makeServer ( { environment : 'playground' } ) ;
10
11
11
12
const app = createApp ( PlaygroundApp ) ;
12
13
app . use ( createPinia ( ) ) ;
13
14
app . component ( 'font-awesome-icon' , FontAwesomeIcon ) ;
14
15
app . component ( 'FaIcon' , FontAwesomeIcon ) ;
15
16
17
+ for ( const prop in VInlineFields ) {
18
+ app . component ( prop , VInlineFields [ prop ] ) ;
19
+ }
20
+
16
21
registerPlugins ( app ) ;
17
22
18
23
app . mount ( '#app' ) ;
You can’t perform that action at this time.
0 commit comments