alibaba / weex

A framework for building Mobile cross-platform UI
https://weexapp.com/
Apache License 2.0
18.28k stars 2.13k forks source link

如何引用其他包下面封装的组件 #509

Closed walid1992 closed 8 years ago

walid1992 commented 8 years ago

当前包时 example/market/main.we 其他包是example/ui/xb-title-bar.we main.we中如何引用xb-title-bar.we这个组件?

期待您的解答~

luics commented 8 years ago

@walid1992 如果是在 https://github.com/alibaba/weex 工程下,只需要使用 require('../ui/xb-title-bar.we'); 如果你新建了工程,可以参考 /webpack.config.js ,依赖配置在 /package.json

@Jinjiang @lvscar 我们的脚手架可以考虑支持一种依赖管理 (如 webpack, browserify),或者 cli 做相应支持,降低开发者的成本。

Jinjiang commented 8 years ago

@Jinjiang @lvscar 我们的脚手架可以考虑支持一种依赖管理 (如 webpack, browserify),或者 cli 做相应支持,降低开发者的成本。

已经在进行中 谢谢反馈

walid1992 commented 8 years ago

@luics 明白啦 谢谢您的帮助~

lvscar commented 8 years ago

latest version of weex-toolkit 0.2.1+ support require other we&js .

after upgrade , you can use following syntax in your we file:

<script>
require("./other.we") // for we
require("./3part") // for js
</script>