首页 > 代码库 > Vue属性中带’-‘的处理方式

Vue属性中带’-‘的处理方式

我们在写属性时经常会加入’-‘来进行分词,比如:<panda   from-here=”China”></panda>,那这时我们在props里如果写成props:[‘form-here’]是错误的,我们必须用小驼峰式写法props:[‘formHere’]。

 

Vue属性中带’-‘的处理方式