Web组件应放在“web”文件夹下吗?

时间:2013-01-23 15:54:50

标签: dart

目的是将网络组件置于web文件夹的某个位置,还是位于lib文件夹下?

我问,因为我不确定,据我所知,它没有被提及。

2 个答案:

答案 0 :(得分:2)

将您的组件放在lib目录下。

lib/
  control1.html
  control2.html
  control3.html

假设您配置了pubspec.yaml文件并将包命名为“my_controls”。

name: my_controls
dependencies:
  html5lib: '>=0.3.1+2'
  web_ui: '>=0.3.2'

由于您的项目现在定义了一个包,因此您可以将lib目录中的文件引用为:

<link rel="components" href="packages/my_controls/control1.html">
<link rel="components" href="packages/my_controls/control2.html">
<link rel="components" href="packages/my_controls/control3.html">

答案 1 :(得分:1)

您可以指向组件:

<link rel="components" href="component/ui/login.html">

在这种情况下,您的组件位于web / component / 在web / component / ui / 你有login.html文件