Skip to content

andfanilo/personal-codepen

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

personal-codepen

A personal Codepen setup in Vue. Idea by this post.

Prerequisites

For development, we recommend :

Build

npm install

Installs all of the specified packages of your project.

Run

npm run serve

This should redirect you to http://localhost:8080 for your application.

Build

npm run build

You can deploy the built content in the dist/ directory to any static file server.

Setup VSCode

Run the Setup VS Code and Setup ESLint from the recommended settings in Vue.js extension pack documentation into your Workspace settings :

  • Enable FormatOnSave & Eslint for .vue files
"editor.formatOnSave": true,
"eslint.validate": [
  "javascript",
  "javascriptreact",
  "vue"
]
  • Configure ESLint

Create/update eslint config file (.eslintrc.js or .eslintrc.json) in your project folder, then fill it with :

module.exports = {
  plugins: ['vue'], // enable vue plugin
  extends: ['plugin:vue/essential', 'prettier'], // activate vue related rules
}

About

WIP: A Vue.js codepen clone

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published