Vue——组件参数校验与非Props特性

Posted harold-hua

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Vue——组件参数校验与非Props特性相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html>
<html>

    <head>
        <meta charset="UTF-8">
        <title>组件参数校验与非Props特性</title>
        <script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
    </head>

    <body>
        <div id="root">
            <child :content="‘组件参数校验‘"></child>
            <lastchild :text="‘非Props特性‘"></lastchild>
        </div>
        <script type="text/javascript">
            Vue.component(‘child‘, {
                props: {
                    //                    content: Number
                    //                    content: [String,Number]
                    content: {
                        type: String,
                        //                        required: false,
                        //                        default: ‘default Value‘,
                        //                        validator(value) {
                        //                            return(value.length > 5)
                        //                        }
                    }
                },
                template: ‘<div>{{content}}</div>‘
            })
            Vue.component(‘lastchild‘, {
                template: ‘<div>非Props特性</div>‘
            })
            var rm = new Vue({
                el: ‘#root‘
            })
        </script>
    </body>

</html>

 

以上是关于Vue——组件参数校验与非Props特性的主要内容,如果未能解决你的问题,请参考以下文章

组件参数校验与非props特性

props特性

props的对象写法

Vue-校验props传来的值

vue使用props在组件中传输和接收参数

vue 组件属性props,特性驼峰命名,连接线使用