Mahinul Islam Meem

Results 4 comments of Mahinul Islam Meem

Here's an example: ``` async create (feed) { feed.options = { title: 'Something', description: 'A RSS news feed containing the latest news of Something.', link: 'https://www.Something.com/rss.xml', feedLinks: { atom: 'https://www.Something.com/rss.xml'...

any updates on cdata? i'm facing this cdata in news. my news data are : ``` news: { publication: { name: 'সময় নিউজ', language: process.env.NEWS_LANG }, publication_date: new Date(parseInt(news.updatedAt)).toISOString(), title:...

Here's my example: **nuxt.config.js** ``` vuetify: { treeShake: true, optionsPath: './vuetify.options.js', options: { customProperties: true } } ``` **vuetify.options.js** ``` export default { theme: { light: true, themes: { light:...

``` const mqStandAlone = '(display-mode: standalone)' if (navigator && window) { if (navigator.standalone || window.matchMedia(mqStandAlone).matches) { this.pwa = true } } ``` Thanks