naive-ui/demo/documentation/components/message/enUS/basic.md
2019-10-08 13:34:34 +08:00

797 B

Basic

<n-button @click="emitInfo">
  Info
</n-button>
<n-button @click="emitError">
  Error
</n-button>
<n-button @click="emitWarning">
  Warning
</n-button>
<n-button @click="emitSuccess">
  Success
</n-button>
export default {
  data() {
    return {}
  },
  methods: {
    emitInfo() {
      this.$NMessage.info(
        "I don't know why nobody told you how to unfold your love"
      )
    },
    emitError() {
      this.$NMessage.error("Once upon a time you dressed so fine")
    },
    emitWarning() {
      this.$NMessage.warning("How many roads must a man walk down")
    },
    emitSuccess() {
      this.$NMessage.success(
        "'Cause you walked hand in hand With another man in my place"
      )
    }
  }
}
.n-button {
  margin: 0 12px 8px 0;
}