You are reading docs for v1.3.1, click here for the latest version.
로그인창 (LoginDialog)

This is an overview of the most common usage of 로그인창 (LoginDialog). For more information about the available properties, methods, or events, head over to the complete API documentation for 로그인창 (LoginDialog).

로그인창(LoginDialog)는 사용자 인증에 사용되는 두개의 인풋을 가집니다.


const dialogs = require('ui/dialogs')

module.exports = {
  mounted() {
    dialogs.login('Please log in', 'Username', 'Password')
    .then(result => {
      console.log(result)
    })
  }
}
Contributors