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 2020
2121 <v-row >
2222 <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 >
2428 </v-col >
2529 </v-row >
2630 </v-container >
Original file line number Diff line number Diff line change @@ -5,14 +5,19 @@ import { createPinia } from 'pinia';
55import { registerPlugins } from '../../plugins' ;
66import { FontAwesomeIcon } from '@fortawesome/vue-fontawesome' ;
77import { makeServer } from '../../server' ;
8+ import * as VInlineFields from '../../index' ;
89
9- makeServer ( ) ;
10+ makeServer ( { environment : 'playground' } ) ;
1011
1112const app = createApp ( PlaygroundApp ) ;
1213app . use ( createPinia ( ) ) ;
1314app . component ( 'font-awesome-icon' , FontAwesomeIcon ) ;
1415app . component ( 'FaIcon' , FontAwesomeIcon ) ;
1516
17+ for ( const prop in VInlineFields ) {
18+ app . component ( prop , VInlineFields [ prop ] ) ;
19+ }
20+
1621registerPlugins ( app ) ;
1722
1823app . mount ( '#app' ) ;
You can’t perform that action at this time.
0 commit comments