`\r\n2. Uncomment `\u003CNuxtWelcome v-html=\"html\" />`\r\n3. The preview should HMR and show \"Hello World\"\r\n4. Reload the preview --> No \"Hello World\"\n\n### Describe the bug\n\nOverriding the innerHTML of a component with `v-html` (which works in Vue.js) only applies the innerHTML on HMR. When reloading the page, Nuxt ignores the `v-html`.\n\n### Additional context\n\n_No response_\n\n### Logs\n\n_No response_",[2988,2989],{"name":2934,"color":2935},{"name":2923,"color":2924},19516,"`v-html` on component only works in HMR","2023-03-07T22:54:23Z","https://github.com/nuxt/nuxt/issues/19516",0.71109587,{"description":2996,"labels":2997,"number":3005,"owner":2912,"repository":2912,"state":2938,"title":3006,"updated_at":3007,"url":3008,"score":3009},"I plan on using `nuxt generate` to create static sites and blogs. Other alternates, obviously, are Jekyll, Hexo, Hugo, etc. \r\n\r\nCurrently, like the mentioned alternatives, nuxt provides:\r\n\r\n- layouts or templates\r\n- components or partials\r\n- dynamic urls or routing\r\n- assets (css, images, etc.) \r\n\r\nHowever, the main features it does not provide:\r\n \r\n- Data files for reusable information that can be used inside pre-compiled files (this can be done inside HTML templates locally with the `data` component property, but there is no global data configurations that can be used inside markdown files before they are compiled as vue components)\r\n\r\n- Front-matter/metadata that facilitates content organization (e.g. by date, title, category etc.)\r\n\r\nBefore I go off and try to incorporate these features on my own, my question is: would it make any sense to incorporate these features into Nuxt? \n\n\u003C!--cmty-->\u003C!--cmty_prevent_hook-->\n\u003Cdiv align=\"right\">\u003Csub>\u003Cem>This question is available on \u003Ca href=\"https://nuxtjs.cmty.io\">Nuxt.js\u003C/a> community (\u003Ca href=\"https://nuxtjs.cmty.io/nuxt/nuxt.js/issues/c644\">#c644\u003C/a>)\u003C/em>\u003C/sub>\u003C/div>",[2998,3001,3004],{"name":2999,"color":3000},"question","cc317c",{"name":3002,"color":3003},"available soon","6de8b0",{"name":2949,"color":2950},747,"Add data and/or content folder for static generated part of application","2023-01-18T15:39:46Z","https://github.com/nuxt/nuxt/issues/747",0.7140351,{"labels":3011,"number":3014,"owner":2912,"repository":2912,"state":2938,"title":3015,"updated_at":3016,"url":3017,"score":3018},[3012,3013],{"name":2903,"color":2960},{"name":2949,"color":2950},6668,"Proposal to replace \u003Cnuxt> and \u003Cnuxt-child> by normal slots","2023-01-22T15:51:03Z","https://github.com/nuxt/nuxt/issues/6668",0.71431524,{"description":3020,"labels":3021,"number":3023,"owner":2912,"repository":2912,"state":2938,"title":3024,"updated_at":3025,"url":3026,"score":3027},"Hi,\r\nI am trying to implement Nuxt with Chartjs but I am having hard time doing that. \r\nHere is what I did according to nuxt official example: [https://github.com/nuxt/nuxt.js/tree/dev/examples/vue-chartjs](https://github.com/nuxt/nuxt.js/tree/dev/examples/vue-chartjs)\r\n\r\nI created a component at `components/bar-chart`\r\n```\r\n\u003Cscript>\r\nimport { Bar } from 'vue-chartjs'\r\n\r\nexport default Bar.extend({\r\n props: ['data', 'options'],\r\n mounted () {\r\n this.renderChart(this.data, this.options)\r\n }\r\n})\r\n\u003C/script>\r\n```\r\nin 'nuxt.config.js' I have the following:\r\n```\r\nvendor: [\r\n '~/plugins/vuetify.js',\r\n 'chart.js',\r\n 'vue-chartjs'\r\n ], \r\n```\r\nand now in my 'pages/user' this is how template looks like:\r\n```\r\n\u003Ctemplate>\r\n\u003Cv-layout row wrap>\r\n \u003Cv-flex xs12>\r\n \u003CBarChart :data=\"barChartData\" :options=\"{ maintainAspectRatio: false }\">\u003C/BarChart>\r\n \u003C/v-flex>\r\n \u003C/v-layout>\r\n\u003C/template>\r\n\u003Cscript>\r\nimport BarChart from '~/components/bar-chart'\r\n\r\nexport default {\r\n name: 'userpaneli',\r\n layout: 'userpanel',\r\n data () {\r\n return {\r\n currentView: 'OnlineShop',\r\n filter: []\r\n }\r\n },\r\n asyncData () {\r\n return {\r\n barChartData: {\r\n labels: ['January', 'February'],\r\n datasets: [\r\n {\r\n label: 'Testing this ',\r\n data: [10, 15]\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n computed: {\r\n ...mapGetters({\r\n view: 'user/userRoute'\r\n })\r\n },\r\n components: {\r\n BarChart\r\n }\r\n}\r\n\u003C/script>\r\n```\r\nso above I am trying just some dump data to make it work but later I will get data from vuex store. \r\n\r\nNow after doing this I am getting this error: \r\n`__WEBPACK_IMPORTED_MODULE_0_vue_chartjs__.Bar.extend is not a function`\r\n\r\nAm I missing something can someone help me please, \r\nthnx in advance\n\n\u003C!--cmty-->\u003C!--cmty_prevent_hook-->\n\u003Cdiv align=\"right\">\u003Csub>\u003Cem>This question is available on \u003Ca href=\"https://nuxtjs.cmty.io\">Nuxt.js\u003C/a> community (\u003Ca href=\"https://nuxtjs.cmty.io/nuxt/nuxt.js/issues/c2172\">#c2172\u003C/a>)\u003C/em>\u003C/sub>\u003C/div>",[3022],{"name":2949,"color":2950},2503,"Nuxt + Charjs Help needed","2023-01-18T16:02:15Z","https://github.com/nuxt/nuxt/issues/2503",0.7146431,["Reactive",3029],{},["Set"],["ShallowReactive",3032],{"$fTRc1wZytZ_XrK4EfJfei_Sz-An4H4Yy6syhVxH_PVJc":-1,"$fJIxIhEnt_VMzbduzGYxVKokxxuvHCqLbjlGwEdyGb6Y":-1},"/nuxt/ui/4396"]