How to access the file system from Nuxt.js?
问题 In express.js I can write a controller that: accesses the file system reads the contents of a directory, and sends that information as a local variable to the view. I'm not sure how to go about this in Nuxt.js because I can't require the fs module from the component. Is there anywhere where I can populate a variable with a list of files in the server (for example, in the static folder) so that the component has access to it? 回答1: To require modules on the serverside, use serverMiddleware #