Vue composition API 中 this.$message 的写法


vue2.x 通用写法:

...
this.$message({
  type: 'success',
  message: '删除成功'
})
...

vue composition API 写法:

...
setup(props, ctx) {
  ...
  const { $message } = ctx.root
    $message({
      type: 'success',
      message: '删除成功'
  })
  ...
}
...

$store 等也可以用类似的方法

const { $store, $message, $router, $route } = ctx.root


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM