export default { data() { return { message: 'Hello from mixin!', count: 0 }; }, methods: { increment() { return this.count++; } }};