You are reading docs for v1.3.1, click here for the latest version.
액션다이얼로그 (ActionDialog)

This is an overview of the most common usage of 액션다이얼로그 (ActionDialog). For more information about the available properties, methods, or events, head over to the complete API documentation for 액션다이얼로그 (ActionDialog).

액션 다이얼로그(ActionDialog)로 선택가능한 옵션들의 리스트를 가진 다이얼로그를 만들 수 있습니다. selectable options.


const dialogs = require('ui/dialogs')

module.exports = {
  mounted() {
    dialogs.action('Choose one!', 'Or cancel...', ['cheese', 'wine'])
    .then(result => {
      console.log(result);
    })
  }
}
Contributors