vue3在setup当中使用混入mixins
vue3在setup当中使用混入mixins。
·
mixins/index.js文件
export default {
methods: {
sayHello() {
alert("hello");
}
}
};
在使用的页面引入
<script>
import commont from "./mixins/index.js";//引入混入
import { getCurrentInstance, onMounted } from "vue";
export default {
name: "App",
mixins: [commont ],//使用混入
setup() {
const { proxy } = getCurrentInstance();
onMounted(() => {
proxy.sayHello();
});
},
};
</script>
更多推荐
已为社区贡献2条内容
所有评论(0)