Web コンポーネントをweb
どこかのフォルダーの下に配置する目的ですか、それともフォルダーの下に配置しlib
ますか?
よくわからないので、私が知る限り言及されていないので質問しています。
Web コンポーネントをweb
どこかのフォルダーの下に配置する目的ですか、それともフォルダーの下に配置しlib
ますか?
よくわからないので、私が知る限り言及されていないので質問しています。
コンポーネントを 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">
コンポーネントを指すことができます:
<link rel="components" href="component/ui/login.html">
この場合、コンポーネントは web/component/ にあり、web/component/ui/ には login.html ファイルがあります