vue的实例属性$options是用来获取定义在data外的数据和方法的。
<script> export default { name: "Test", data() { return { }; }, //在data外面定义的属性和方法通过$options可以获取和调用 name: "zs", age: 12, haha() { console.log("haha"); }, created() { console.log(this.$options.name); // zs console.log(this.$options.age); //12 this.$options.haha(); // haha }, </script>
原文地址:https://www.cnblogs.com/luguankun/p/10856911.html
时间: 2024-11-08 22:36:13