考虑一个非常简单的Polymer组件模板示例:
<dom-module id="parent">
<template>
<slot name="greeting"></slot>
</template>
</dom-module>
用户现在可以将自己的内容传递给该组件,如下所示:
<p slot="greeting">
Hello, world!
</p>
如果我现在想让我的用户使用Polymer.AppLocalizeBehavior对他们插入插槽中的消息进行本地化怎么办?由于插槽内的内容始终按原样呈现,因此以下解决方案显然不起作用:
<p slot="greeting">
{{ localize('hello_world') }}
</p>
我该怎么办?