@@ -246,7 +246,7 @@ export default {
// }),
],
babel: {
- plugins: [],
+ babelrc: false,
},
postcss: {
plugins: {},
@@ -35,7 +35,7 @@ export default {
attrs() {
return Object.entries(this.$options.propsData).reduce(
(o, [key, value]) => {
- !Object.hasOwn(this.$props, key) && (o[key] = value);
+ !Object.prototype.hasOwnProperty.call(this.$props, key) && (o[key] = value);
return o;
{},