1
0
Fork 0

feat: Traefik Pilot WebUI

This commit is contained in:
Matthieu Hostache 2020-05-19 09:12:53 +02:00 committed by Traefiker Bot
parent 4a31544024
commit 58bf1a2ca5
16 changed files with 564 additions and 50 deletions

View file

@ -0,0 +1,8 @@
import Vue from 'vue'
import iFrameResize from 'iframe-resizer/js/iframeResizer'
Vue.directive('resize', {
bind: function (el, { value = {} }) {
el.addEventListener('load', () => iFrameResize(value, el))
}
})