<!DOCTYPE html>
<html>

<head>
    <meta charset="UTF-8">
    <title>test</title>
    <script src="./vue.js"></script>
    <style>

    </style>

</head>

<body>
    <div id="root">
        <table>
            <tbody>
                <row></row>
                <row></row>
                <row></row>
            </tbody>
        </table>
    </div>

    <script>
        Vue.component('row', {
            template: '<tr><td>This a row</td></tr>'
        })
        var app = new Vue({
            el: " #root ",
            data: {

            },
        })
    </script>
</body>

</html>

 会出现以下问题:

 tr 使用模板后,出在table标签 外面 了。不符合web规范.使用<tr is="row"></tr>的方式来解决,如下:

<!DOCTYPE html>
<html>

<head>
    <meta charset="UTF-8">
    <title>test</title>
    <script src="./vue.js"></script>
    <style>

    </style>

</head>

<body>
    <div id="root">
        <table>
            <tbody>
                <tr is="row"></tr>
                <tr is="row"></tr>
                <tr is="row"></tr>
            </tbody>
        </table>
    </div>

    <script>
        Vue.component('row', {
            template: '<tr><td>This a row</td></tr>'
        })
        var app = new Vue({
            el: " #root ",
            data: {

            },
        })
    </script>
</body>

</html>

 

Logo

前往低代码交流专区

更多推荐