What is the vue component? Components are reusable Vue instances. It is essentially an object that contains member attributes such as data, computed, watch, methods, filters, and vue component life cycle hooks. This article will give you a detailed introduction to the content of the vue component.
Let’s take a look at the component structure first:
{ data(){ return { // } }, computed:{ displayName(){ return ''; } }, methods:{ onClickHandler(params){ // do something } } }
Basic knowledge:
data attribute
The data attribute maintains the internal state of a component, and other components are not visible under normal circumstances.
Currently I don’t know how to monitor its changes;
Because the calculated attribute computed and the listening attribute watch can only monitor changes in responsive dependencies, and $refs is not responsive.
Can be passed to child components through props;
Can be passed to parent components through $emit;
Can be passed to this.$refs.ref.$data in mounted Get the internal state of the child component during the life cycle;
The data option of a component must be a function.
data选项有两种定义方式: 一、对象形式: ``` data:{ //引用该组件的地方,共用一个状态的引用,以至于,只要有一处修改了$data中的某一属性值,其它引用该组件的地方也跟随着改变该属性值(其实,不是跟随,本来就是同一个指向)。 } ``` 二、函数形式: ``` data(){ return { //引用该组件的地方,每一个组件都会获得独立的引用,互不干扰。 } } ```
computed attribute, methods attribute, filter
method | computed | filter | |
---|---|---|---|
Function | Data variable | Function | |
Used as event processing function | Used as data | Used as pipe symbol | |
Intra-organization | Intra-organization | Intra-organization (local registration), global (global registration) | |
Can take parameters | Without parameters (non-function) | With parameters | |
No Requirements | must have | must have | |
triggered when interacting | in its related dependencies It will be re-evaluated only when changes occur | Executed when the incoming data changes |
Note:
Not all properties in Vue are responsive, for example, $refs cannot monitor its changes; The main difference in component construction is thetemplate generation method.
Template definition method
template option
String template
A string composed of HTML tag structure; Example:{ template: '<h1 v-if="level === 1">简单示例</h1>', props: { level: { type: Number, required: true } } }
<script type="text/x-template" id="anchored-heading-template"> <h1 v-if="level === 1"> 简单示例 </h1> </script> { template: '#anchored-heading-template', props: { level: { type: Number, required: true } } }
render
Use the maximum programming capabilities of JavaScript. This function receives a createElement method as the first parameter Used to create VNode; createElement receives three parameters: component root node type, component configuration object, child node (official description of component configuration object); Example:{ render: function (createElement) { return createElement( 'h' + this.level, // tag name 标签名称 this.$slots.default // 子组件中的阵列 ) }, props: { level: { type: Number, required: true } } }
vue single file component
Single file component structurally separates templates, logic, and styles and saves them in the same file.<template> <div> ... </div> </template> <script> ... export default{ ... } ... </script> <style> ... </style>
Plan selection
Single file | render | |
---|---|---|
Conventional choices | Choices when the previous two solutions cannot solve the problem (high flexibility) |