Vue ignore custom component tag

后端 未结 2 1574
闹比i
闹比i 2021-01-01 17:19

On my site I am using Google CSE (custom search engine by google).

Here is my HTML:

...
2条回答
  •  一生所求
    2021-01-01 17:42

    Vue thinks that you are trying to load a Vue component named gcse:search.

    In order to ignore this tag, add the v-pre directive:

    
    

    Or, you could add the gcse:search tag to Vue's list of ignoredElements:

    Vue.config.ignoredElements = ['gcse:search']
    

提交回复
热议问题