You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
395 B

2 months ago
  1. import { defineMixin } from '../vue'
  2. export const buttonMixin = defineMixin({
  3. props: {
  4. lang: String,
  5. sessionFrom: String,
  6. sendMessageTitle: String,
  7. sendMessagePath: String,
  8. sendMessageImg: String,
  9. showMessageCard: Boolean,
  10. appParameter: String,
  11. formType: String,
  12. openType: String
  13. }
  14. })
  15. export default buttonMixin