Skip to content

phanan/vue-snippets

Folders and files

NameName
Last commit message
Last commit date
May 23, 2019
Aug 11, 2018
Aug 31, 2018
Aug 11, 2018
Aug 11, 2018
Aug 31, 2018
Aug 12, 2018
Aug 31, 2018
Aug 11, 2018
Aug 13, 2018
Aug 13, 2018
Aug 13, 2018
Aug 13, 2018
Feb 7, 2020
Feb 6, 2020
Feb 7, 2020

Repository files navigation

Vue Snippets

logo

A collection of Vue.js snippets -- little trips, tricks, useful directives, some nice practices, you name it.

The website is powered by Hugo.

Contribute

So you have a trick or two up your sleeve and want to share them with the world? Great! You're only a couple of steps away:

  1. Make sure you have Hugo >= 0.46 installed. If you're on a Mac, just do a brew install hugo and you're good to go.
  2. Fork this repo (duh!)
  3. Execute hugo new posts/your-awesome-snippet.md in your terminal. A content/posts/your-awesome-snippet.md file will be created with some placeholder content, like this:
---
title: "Your Awesome Snippet"
date: 2018-08-11T19:58:07+02:00
description: A short description for the snippet.
tags: [max, three, tags]
author:
  name: Your Name
  email: [email protected]
  homepage: https://domain.tld
  twitter: twitter_handle_without_@
  github: github_handle
---

```html
<template>
</template>

<script>
</script>

<style lang="scss" scoped>
</style>
```
  1. Update the file with your snippet (and some of your details). You don't need to fill in everything -- only title, date, description, your name, and the snippet itself, are really required. The snippet can be previewed with hugo server.
  2. Once you're happy with how it looks, commit the file and create a PR 🎉