You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
563 B
24 lines
563 B
import "@/assets/style/common.scss";
|
|
import store from "@/store";
|
|
import React from "react";
|
|
import ReactDOM from "react-dom";
|
|
import "@/plugins/i18n"
|
|
import {Provider} from 'react-redux'
|
|
|
|
import electron from "@/plugins/electron"
|
|
|
|
import Router from "./AppRouter";
|
|
|
|
// 静态资源地址变量请用"__static",在html中使用请用__static
|
|
console.log(electron);
|
|
console.log(__staticVar);
|
|
|
|
|
|
ReactDOM.render(
|
|
<React.StrictMode>
|
|
<Provider store={store}>
|
|
<Router></Router>
|
|
</Provider>
|
|
</React.StrictMode>,
|
|
document.getElementById("root")
|
|
);
|
|
|