3

Web コンポーネントをwebどこかのフォルダーの下に配置する目的ですか、それともフォルダーの下に配置しlibますか?

よくわからないので、私が知る限り言及されていないので質問しています。

4

2 に答える 2

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">
于 2013-02-19T03:44:33.860 に答える
1

コンポーネントを指すことができます:

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

この場合、コンポーネントは web/component/ にあり、web/component/ui/ には login.html ファイルがあります

于 2013-01-23T16:50:59.633 に答える