- Edit
- components/HelloWorld.vue
to test HMR
-
- Check out - create-vue, the official Vue + Vite starter -
-- Learn more about IDE Support for Vue in the - Vue Docs Scaling up Guide. -
-Click on the Vite and Vue logos to learn more
- - - diff --git a/ui2/src/components/devinofgrid.vue b/ui2/src/components/devinofgrid.vue new file mode 100644 index 0000000..9c011bc --- /dev/null +++ b/ui2/src/components/devinofgrid.vue @@ -0,0 +1,11 @@ + + + + $END$ + + + diff --git a/ui2/src/components/modar/setUserinfo.vue b/ui2/src/components/modar/setUserinfo.vue new file mode 100644 index 0000000..85af715 --- /dev/null +++ b/ui2/src/components/modar/setUserinfo.vue @@ -0,0 +1,11 @@ + + + + + + + diff --git a/ui2/src/eventBus.js b/ui2/src/eventBus.js new file mode 100644 index 0000000..e69de29 diff --git a/ui2/src/main.js b/ui2/src/main.js new file mode 100644 index 0000000..d90051e --- /dev/null +++ b/ui2/src/main.js @@ -0,0 +1,15 @@ +import { createApp } from 'vue' +import './style.css' +import App from './App.vue' +import axios from 'axios' + +import ArcoVue from '@arco-design/web-vue'; + +import '@arco-design/web-vue/dist/arco.css'; + +console.log(window.location.hostname); +axios.defaults.baseURL = "http://"+window.location.hostname+":1000"; + +const app=createApp(App); +app.use(ArcoVue); +app.mount('#app');