Pen Settings

HTML

CSS

CSS Base

Add External Stylesheets/Pens

Any URLs added here will be added as <link>s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.

+ add another resource

Add External Scripts/Pens

Any URL's added here will be added as <script>s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.

+ add another resource

Packages

Add Packages

Search for and use JavaScript packages from npm here. By selecting a package, an import statement will be added to the top of the JavaScript editor for this package.

Behavior

Auto Save

If active, Pens will autosave every 30 seconds after being saved once.

Auto-Updating Preview

If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.

Format on Save

If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.

Editor Settings

Code Indentation

Want to change your Syntax Highlighting theme, Fonts and more?

Visit your global Editor Settings.

Vue

              
                <!-- Use preprocessors via the lang attribute! e.g. <template lang="pug"> -->
<template>
  <div id="app">
    <section class="section container">
      <h1 class="title">Show / Hide Password In Vue</h1>
      <p class="content">
        This Pen demonstrates a feature that lets the user view the unmasked contents of a password field.  A <code>showPassword</code> flag controls whether or not the user is working with a type="text" or type="password" input control.  Type in the password field and press the eye icon to show or hide the password.
  </p>
      <div class="columns is-mobile is-centered has-text-centered">
        <div class="column is-three-quarters-mobile is-two-thirds-tablet is-half-desktop is-one-third-widescreen is-one-quarter-fullhd">
      <div class="card">
        <div class="card-content">
      <div class="field">
         <label class="label">Username</label>
         <div class="control">
           <input type="text" class="input" />
          </div>
      </div>     
         <label class="label">Password</label>
      <div class="field has-addons">
         <div class="control is-expanded">
           <input v-if="showPassword" type="text" class="input" v-model="password" />
           <input v-else type="password" class="input" v-model="password">
          </div>
          <div class="control">
            <button class="button" @click="toggleShow"><span class="icon is-small is-right">
            <i class="fas" :class="{ 'fa-eye-slash': showPassword, 'fa-eye': !showPassword }"></i>
          </span>
  </button>
  </div>
  </div>
        <div class="card-footer">
          <button class="button is-success card-footer-item">Login</button>
      </div>     
  </div>
  </div>
  </div>
  </div>
    </section>
  </div>
</template>

<script>
export default {
  data() {
    return {
      showPassword: false,
      password: null
    };
  },
  computed: {
    buttonLabel() {
      return (this.showPassword) ? "Hide" : "Show";
    }
  },
  methods: {
    toggleShow() {
      this.showPassword = !this.showPassword;
    }
  }
};
</script>
              
            
!
999px

Console