Skip to content

Instantly share code, notes, and snippets.

@dongjinahn
Last active February 14, 2018 07:35
Show Gist options
  • Save dongjinahn/6edc0591f3e6c33ac699ab03273832fc to your computer and use it in GitHub Desktop.
Save dongjinahn/6edc0591f3e6c33ac699ab03273832fc to your computer and use it in GitHub Desktop.
<template>
  <div>
    <h1 v-if="a === 'some_string'">Hello, World!</h1>
  </div>
</template>
<script>
export default {
  data() {
    return {
      a: 'some_string',
    };
  },
};
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment