요소 confrim 사용자 정의 태그 추가

1312 단어 cesium
const h = this.$createElement; 
this.$confirm(
                 ,
                {
                    title: that.$t('confirm.information'),
                    message: h('div', null, [
                        h('span', null, '  '),
                        h('br', null, ''),
                        h('div', {
                            //   html  
                            //    `v-bind:style`
                            style: {
                                'margin-top': '5px',
                                color: '#FF7D7C',
                                fontSize: '12px',
                                background: '#FFEBEB',
                                padding: '5px',
                            },
                        },
                        '  '
                    ]),
                    showCancelButton: true,
                    confirmButtonText: this.$t('confirm.confirm'),
                    cancelButtonText: this.$t('confirm.cancel'),
                    type: 'warning'
                }
            ).then((result) => {
                
                    }
                }
            });

좋은 웹페이지 즐겨찾기