What's the difference between in pre-compiled templates and in in-DOM templates #9915
-
There are two good examples in use-multi-word-component-names rules I want to know whether I write el-button or ElButton in the template of app.vue or Single-File Components. What's the difference between |
Beta Was this translation helpful? Give feedback.
Answered by
Justineo
Dec 25, 2023
Replies: 1 comment 1 reply
-
Pre-compiled templates are those you write in In-DOM templates are those you write in real DOM. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
xxholly32
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Pre-compiled templates are those you write in
<template>
blocks of SFC or intemplate
property of your component option.In-DOM templates are those you write in real DOM.