17 lines
197 B
Vue
17 lines
197 B
Vue
|
<template>
|
||
|
|
||
|
<div id='CONTAINER'>
|
||
|
|
||
|
NOTIFICATIONS
|
||
|
|
||
|
</div>
|
||
|
|
||
|
</template>
|
||
|
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
name: 'CONTAINER_NOTIFICATIONS',
|
||
|
data(){ return { gstore: window.gstore.data }; },
|
||
|
}
|
||
|
</script>
|