problem description
B.vue inherits A.vue, but I only want to execute B.vue "s beforeMount? How to achieve this? I"m a little confused by the official documents
.
import A from "./A.vue";
export default {
name: "B",
extends: A,
beforeMount() {
//B beforeMount
}
};