我想知道是否或如何组合 Rikulo UXL 模板——也就是说,只要它是可能的。
为了简单起见,我从UXL 概述网页中获取了 ScrollViewDemo 和 LoginDemo 作为实验。我的目标是在 Dart 中看到类似的东西(当然,这是你做不到的)。
索引.dart
<body>
<style> ... </style>
<script src="ScrollViewDemo.dart" type="application/dart" ></script>
<script src="SignInDemo.dart" type="application/dart" ></script>
<script src="packages/browser/dart.js"></script>
</body>
</html>
在 Dart 中,每个文档只允许一个 dart 脚本。
所以我正在寻找的是一种方法,如上所示,使用 Rikulo 标记。
我们可以这样做吗?