# onemd Create web/md_mitra_lab.html ```html Mitra Lab MasterData ``` index.html for debug ```html ``` main.dart ```dart String initialRoute = homeRoute; try { initialRoute = fxInitialRoute(); } catch (_) {} return MaterialApp( title: ref.watch(webTitleProvider), debugShowCheckedModeBanner: false, theme: ThemeData( primarySwatch: Colors.blue, scaffoldBackgroundColor: Colors.white, canvasColor: Colors.white, primaryColor: Colors.blue, splashColor: Constants.orange, brightness: Brightness.light, ), onGenerateRoute: AppRoute.generateRoute, initialRoute: initialRoute, ); ``` Build and upload -- ```bash flutter build web --release --base-href "/one-ui-flutter/md-mitra/" --pwa-strategy none --web-renderer html ul_flutter_ui devone.aplikasi.web.id ``` # one-ui from existing vuejs >used file : > index.php > store.js update store.js ```js import system from "../../apps/modules/system/system.js"; export const store = new Vuex.Store({ modules: { system: system }, }); ``` update index.php ```php One
```