basic layout,vue components
通用 UI 组件
npm install @jx3box/jx3box-common-ui
import JX3BOX_UI from "@jx3box/jx3box-common-ui";
Vue.use(JX3BOX_UI);
import xx from "@jx3box/jx3box-common-ui/src/xx.vue";
Vue.component(xx.name, xx);
import Fav from "./src/Fav.vue";
const components = {
...Fav,
};
import Fav from "./Fav.vue";
components: {
...
Fav
},
<script src="https://oss.jx3box.com/static/jx3box-lib/vue.js"></script>
<script src="https://oss.jx3box.com/static/jx3box-common-ui/newheader.umd.min.js"></script>
<link rel="stylesheet" href="https://oss.jx3box.com/static/jx3box-common-ui/newheader.css"/>
<div id="app">
<newheader></newheader>
</div>
<script>
new Vue({
components: {
newheader: newheader,
},
}).$mount("#app");
</script>