vue
在手动挂载组件的情况下((new Vue.extend(component)).$mount(dom)
), mixins
局部混入无效!
<template>
<div></div>
</template>
<script>
let test = {
mounted () {
console.log('hello world');
} ,
};
export default {
name: 'v-test' ,
data () {
return {};
} ,
mixins: [
test
] ,
mounted () {
console.log('hello vue');
}
};
</script>
仅输出 hello vue
,混入的 mixins
无效!这是为啥?
继刚才的
hello world
组件之上加入了mixins。没无效呀。如图: