# Avis relatif au navigateur hérité
# La description
Affiche à l'utilisateur un avis indiquant que son navigateur n'est pas pris en charge. Vérifie ie10 ou ie11 et affiche un avis.
# Installer
# Widget
À installer en tant que widget copier-coller.
TIP
La propriété 'minVersion' de ce composant peut être passée en tant qu'attribut sur la balise de script. Voir les détails des options
# Vuejs
To install as vuejs component.
<template>
<div id="app">
<LegacyNotice min-version='10'/>
</div>
</template>
<script>
import LegacyNotice from '@action-agenda/legacy-notice'
export default {
name : 'App',
components: {
LegacyNotice
}
}
</script>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Propriétés
props : { minVersion : { type: String, default: '11' } },
const ie10s = ['10', 'ie10', 'IE10']
const ie11s = ['11', 'ie11', 'IE11']
// if passed 'force' the component will render,
1
2
3
2
3
# I18n (traductions)
export default { messages : {
en: {
'Browser not supported': 'Browser not supported' ,
working : 'Please note we are working to have this web component compatible with legacy browsers still in use.',
interim : 'In the interim, please consider using one of the following free browsers to use this component:'
}
}
}
1
2
3
4
5
6
7
2
3
4
5
6
7