testMethods() — vue Function Reference
Architecture documentation for the testMethods() function in vue-test.ts from the vue codebase.
Entity Profile
Dependency Diagram
graph TD bfa16728_a451_598d_2889_e0c1003788d9["testMethods()"] 5961c2f4_d69b_2bd8_9e4b_340c8b4d6d0e["testConfig()"] 5961c2f4_d69b_2bd8_9e4b_340c8b4d6d0e -->|calls| bfa16728_a451_598d_2889_e0c1003788d9 style bfa16728_a451_598d_2889_e0c1003788d9 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
types/test/vue-test.ts lines 37–60
testMethods() {
this.$mount('#app', false)
this.$forceUpdate()
this.$destroy()
this.$set({}, 'key', 'value')
this.$delete({}, 'key')
this.$watch('a', (val: number, oldVal: number) => {}, {
immediate: true,
deep: false
})()
this.$watch(
() => this.a,
(val: number) => {}
)
this.$on('', () => {})
this.$once('', () => {})
this.$off('', () => {})
this.$emit('', 1, 2, 3)
this.$nextTick(function () {
this.$nextTick
})
this.$nextTick().then(() => {})
this.$createElement('div', {}, 'message')
}
Domain
Subdomains
Called By
Source
Frequently Asked Questions
What does testMethods() do?
testMethods() is a function in the vue codebase.
What calls testMethods()?
testMethods() is called by 1 function(s): testConfig.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free