在 Polymer 1.0 中,我无法将其他元素添加到 paper-radio-group 中,除非它们在单击时窃取了选择

In Polymer 1.0 I cannot add other elements to a paper-radio-group without them stealing the selection when clicked

我有一个看起来像这样的页面

<!doctype html>
<html>
<head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1, user-scalable=yes">
    <meta name="mobile-web-app-capable" content="yes">
    <meta name="apple-mobile-web-app-capable" content="yes">

    <script src='bower_components/webcomponentsjs/webcomponents.min.js'></script>
    <link rel="import" href="bower_components/polymer/polymer.html"/>
    <link rel='import' href='bower_components/paper-radio-group/paper-radio-group.html'>
    <style>
        paper-radio-button {
            display: block;
        }

        .indent {
            padding-left:40px;
        }
    </style>
</head>
<body>
    <paper-radio-group selected='A'>
        <paper-radio-button name='A'>A</paper-radio-button>
        <div class='indent'>Click on me</div>
        <paper-radio-button name='B'>B</paper-radio-button>
        <div class='indent'>Or me</div>
    </paper-radio-group>
</body>

我的问题是当页面呈现时,它会显示选择了 A,但是如果我单击 This is the radiobutton for A div,然后从单选按钮中删除选择。我怎样才能添加我的 html 标签,并且只有实际的单选按钮决定纸单选组中的选择?

干杯

弗朗茨

其实当我升级到最新版本的 Polymer 时问题已经解决了