mixin.js 265 B

12345678910111213141516171819
  1. export const mixin = {
  2. methods:{
  3. showName(){
  4. alert(this.name)
  5. }
  6. },
  7. mounted() {
  8. console.log('你好')
  9. },
  10. }
  11. export const hunhe2 = {
  12. data(){
  13. return{
  14. x:100,
  15. y:200
  16. }
  17. }
  18. }