W3Cschool
恭喜您成為首批注冊用戶
獲得88經(jīng)驗值獎勵
返回一個提供應用上下文的應用實例。應用實例掛載的整個組件樹共享同一個上下文。
const app = Vue.createApp({})
你可以在 createApp
之后鏈式調(diào)用其它方法,這些方法可以在應用 API 中找到。
該函數(shù)接收一個根組件選項對象作為第一個參數(shù):
const app = Vue.createApp({
data() {
return {
...
}
},
methods: {...},
computed: {...}
...
})
使用第二個參數(shù),我們可以將根 prop 傳遞給應用程序:
const app = Vue.createApp(
{
props: ['username']
},
{ username: 'Evan' }
)
<div id="app">
<!-- 會顯示 'Evan' -->
{{ username }}
</div>
interface Data {
[key: string]: unknown
}
export type CreateAppFunction<HostElement> = (
rootComponent: PublicAPIComponent,
rootProps?: Data | null
) => App<HostElement>
返回一個”虛擬節(jié)點“,通常縮寫為 VNode:一個普通對象,其中包含向 Vue 描述它應在頁面上渲染哪種節(jié)點的信息,包括所有子節(jié)點的描述。它的目的是用于手動編寫的渲染函數(shù):
render() {
return Vue.h('h1', {}, 'Some title')
}
接收三個參數(shù):type
,props
和 children
String | Object | Function
HTML 標簽名、組件或異步組件。使用返回 null 的函數(shù)將渲染一個注釋。此參數(shù)是必需的。
Object
一個對象,與我們將在模板中使用的 attribute、prop 和事件相對應??蛇x。
String | Array | Object
子代 VNode,使用 h()
生成,或者使用字符串來獲取“文本 VNode”,或帶有插槽的對象??蛇x。
h('div', {}, [
'Some text comes first.',
h('h1', 'A headline'),
h(MyComponent, {
someProp: 'foobar'
})
])
從實現(xiàn)上看,defineComponent
只返回傳遞給它的對象。但是,就類型而言,返回的值有一個合成類型的構造函數(shù),用于手動渲染函數(shù)、TSX 和 IDE 工具支持。
具有組件選項的對象
import { defineComponent } from 'vue'
const MyComponent = defineComponent({
data() {
return { count: 1 }
},
methods: {
increment() {
this.count++
}
}
})
或者是一個 setup
函數(shù),函數(shù)名稱將作為組件名稱來使用
import { defineComponent, ref } from 'vue'
const HelloWorld = defineComponent(function HelloWorld() {
const count = ref(0)
return { count }
})
創(chuàng)建一個只有在需要時才會加載的異步組件。
對于基本用法,defineAsyncComponent
可以接受一個返回 Promise
的工廠函數(shù)。Promise 的 resolve
回調(diào)應該在服務端返回組件定義后被調(diào)用。你也可以調(diào)用 reject(reason)
來表示加載失敗。
import { defineAsyncComponent } from 'vue'
const AsyncComp = defineAsyncComponent(() =>
import('./components/AsyncComponent.vue')
)
app.component('async-component', AsyncComp)
當使用局部注冊時,你也可以直接提供一個返回 Promise
的函數(shù):
import { createApp, defineAsyncComponent } from 'vue'
createApp({
// ...
components: {
AsyncComponent: defineAsyncComponent(() =>
import('./components/AsyncComponent.vue')
)
}
})
對于高階用法,defineAsyncComponent
可以接受一個對象:
defineAsyncComponent
方法還可以返回以下格式的對象:
import { defineAsyncComponent } from 'vue'
const AsyncComp = defineAsyncComponent({
// 工廠函數(shù)
loader: () => import('./Foo.vue')
// 加載異步組件時要使用的組件
loadingComponent: LoadingComponent,
// 加載失敗時要使用的組件
errorComponent: ErrorComponent,
// 在顯示 loadingComponent 之前的延遲 | 默認值:200(單位 ms)
delay: 200,
// 如果提供了 timeout ,并且加載組件的時間超過了設定值,將顯示錯誤組件
// 默認值:Infinity(即永不超時,單位 ms)
timeout: 3000,
// 定義組件是否可掛起 | 默認值:true
suspensible: false,
/**
*
* @param {*} error 錯誤信息對象
* @param {*} retry 一個函數(shù),用于指示當 promise 加載器 reject 時,加載器是否應該重試
* @param {*} fail 一個函數(shù),指示加載程序結束退出
* @param {*} attempts 允許的最大重試次數(shù)
*/
onError(error, retry, fail, attempts) {
if (error.message.match(/fetch/) && attempts <= 3) {
// 請求發(fā)生錯誤時重試,最多可嘗試 3 次
retry()
} else {
// 注意,retry/fail 就像 promise 的 resolve/reject 一樣:
// 必須調(diào)用其中一個才能繼續(xù)錯誤處理。
fail()
}
}
})
參考:動態(tài)和異步組件
WARNING
resolveComponent
只能在 render
或 setup
函數(shù)中使用。
如果在當前應用實例中可用,則允許按名稱解析 component
。
返回一個 Component
。如果沒有找到,則返回 undefined
。
const app = Vue.createApp({})
app.component('MyComponent', {
/* ... */
})
import { resolveComponent } from 'vue'
render() {
const MyComponent = resolveComponent('MyComponent')
}
接受一個參數(shù):name
String
已加載的組件的名稱。
WARNING
resolveDynamicComponent
只能在 render
或 setup
函數(shù)中使用。
允許使用與 <component :is="">
相同的機制來解析一個 component
。
返回已解析的 Component
或新創(chuàng)建的 VNode
,其中組件名稱作為節(jié)點標簽。如果找不到 Component
,將發(fā)出警告。
import { resolveDynamicComponent } from 'vue'
render () {
const MyComponent = resolveDynamicComponent('MyComponent')
}
接受一個參數(shù):component
String | Object (組件的選項對象)
有關詳細信息,請參閱動態(tài)組件上的文檔。
WARNING
resolveDirective
只能在 render
或 setup
函數(shù)中使用。
如果在當前應用實例中可用,則允許通過其名稱解析一個 directive
。
返回一個 Directive
。如果沒有找到,則返回 undefined
。
const app = Vue.createApp({})
app.directive('highlight', {})
import { resolveDirective } from 'vue'
render () {
const highlightDirective = resolveDirective('highlight')
}
接受一個參數(shù):name
String
已加載的指令的名稱。
WARNING
withDirectives
只能在 render
或 setup
函數(shù)中使用。
允許將指令應用于 VNode。返回一個包含應用指令的 VNode。
import { withDirectives, resolveDirective } from 'vue'
const foo = resolveDirective('foo')
const bar = resolveDirective('bar')
return withDirectives(h('div'), [
[foo, this.x],
[bar, this.y]
])
接受兩個參數(shù):vnode
和 directives
。
vnode
一個虛擬節(jié)點,通常使用 h()
創(chuàng)建。
Array
一個指令數(shù)組。
每個指令本身都是一個數(shù)組,最多可以定義 4 個索引,如以下示例所示。
[directive]
- 該指令本身。必選。 const MyDirective = resolveDirective('MyDirective')
const nodeWithDirectives = withDirectives(h('div'), [[MyDirective]])
[directive, value]
- 上述內(nèi)容,再加上分配給指令的類型為 any
的值。 const MyDirective = resolveDirective('MyDirective')
const nodeWithDirectives = withDirectives(h('div'), [[MyDirective, 100]])
[directive, value, arg]
- 上述內(nèi)容,再加上一個 string
參數(shù),比如:在 v-on:click
中的 click
。 const MyDirective = resolveDirective('MyDirective')
const nodeWithDirectives = withDirectives(h('div'), [
[MyDirective, 100, 'click']
])
[directive, value, arg, modifiers]
- 上述內(nèi)容,再加上定義任何修飾符的 key: value
鍵值對 Object
。 const MyDirective = resolveDirective('MyDirective')
const nodeWithDirectives = withDirectives(h('div'), [
[MyDirective, 100, 'click', { prevent: true }]
])
createRenderer 函數(shù)接受兩個泛型參數(shù): HostNode
和 HostElement
,對應于宿主環(huán)境中的 Node 和 Element 類型。
例如,對于 runtime-dom,HostNode 將是 DOM Node
接口,HostElement 將是 DOM Element
接口。
自定義渲染器可以傳入特定于平臺的類型,如下所示:
import { createRenderer } from 'vue'
const { render, createApp } = createRenderer<Node, Element>({
patchProp,
...nodeOps
})
接受兩個參數(shù):HostNode
和 HostElement
。
Node
宿主環(huán)境中的節(jié)點。
Element
宿主環(huán)境中的元素。
將回調(diào)推遲到下一個 DOM 更新周期之后執(zhí)行。在更改了一些數(shù)據(jù)以等待 DOM 更新后立即使用它。
import { createApp, nextTick } from 'vue'
const app = createApp({
setup() {
const message = ref('Hello!')
const changeMessage = async newMessage => {
message.value = newMessage
await nextTick()
console.log('Now DOM is updated')
}
}
})
Copyright©2021 w3cschool編程獅|閩ICP備15016281號-3|閩公網(wǎng)安備35020302033924號
違法和不良信息舉報電話:173-0602-2364|舉報郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號
聯(lián)系方式:
更多建議: