Pour tout problème contactez-nous par mail : support@froggit.fr | La FAQ :grey_question: | Rejoignez-nous sur le Chat :speech_balloon:

Skip to content
Snippets Groups Projects
Settings.vue 534 B
Newer Older
  • Learn to ignore specific revisions
  • Shnappy31's avatar
    Shnappy31 committed
    <template>
    	<div id="products-list" class="container">
    		<div>
    			<div class="">
    				<h1 class="text-center">Settings</h1>
    			</div>
    		</div>
    	</div>
    </template>
    
    <script>
    export default {
        name: 'Settings',
    	data () {
    		return { }
    	},
    	mounted () {
    		console.log('Settings')
    		// for (var property in this.$i18n.messages) {
    		// 	if (this.$i18n.messages.hasOwnProperty(property)) {
    		// 		this.langs.push({ 'lang': property, 'locale': this.$i18n.messages[property].global.locale })
    		// 	}
    		// }
    	}
    }
    </script>
    
    <style>
    
    </style>