Sponsored Content
Top Forums Web Development Turning jQuery Code into Vue.js Post 303025671 by Neo on Thursday 8th of November 2018 09:49:57 PM
Old 11-08-2018
Also, for completeness, I changed the GetAvatar() method to a computed property and it works as well. I personally like this method because it is a few less lines of code and it's easy to use the dev tools Vue debugger to look at the computed data:

Code:
Vue.component("unix-navbar", {
  template: `<div class="neo-table-border vue-navbar">
              <div  class="vue-site-info">
                <a class="vue-site-link" :href="url">{{name}}</a>
              </div>
              <div id="avatar"  v-html="theavatar" @click="OpenMemberPanel()"></div>
            </div>`,

  data() {
    return {
      name: "The UNIX and Linux Forums",
      url: "https://www.unix.com/"
    };
  },
  computed: {
    theavatar: function() {
      if (vbuserId > 0)
        return '<img id="avatar-img" src="' + vbtheURL + '"></img>';
      else return '<i id="avatar-icon" class="fas fa-user"></span>';
    }
  },
  methods: {
    OpenMemberPanel() {
      if (vbuserId > 0) openMemberPanel();
      else openLogin();
    }
  }
});

var navbar = new Vue({
  el: "#vue-navbar"
});

Vue debugger:

Image
 

6 More Discussions You Might Find Interesting

1. What is on Your Mind?

JQuery and CSS Flex Code for Responsive WOL Page

I have just wrote this jQuery to the WOL page, so the table of users on line will not need scrollbars and will instead transform into a responsive table: <script> jQuery(document).ready(function (){ jQuery("#neo-who-flex-tcat"). css({"display":"flex","flex-flow":"row wrap", ... (0 Replies)
Discussion started by: Neo
0 Replies

2. What is on Your Mind?

JQuery and CSS Flex Code for Responsive Forum Home Page

So far, I have completed making the home page more responsive (except for the forum stats at the top and the WOL box at the bottom, they still use scroll bars). xevV3_iZ8-s For full screen use the link below and set your YT resolution to 1080p60 HD https://youtu.be/xevV3_iZ8-s Here is... (1 Reply)
Discussion started by: Neo
1 Replies

3. What is on Your Mind?

JQuery to Add Code Tags to Selected Text

Hey. Someone find or write some jQuery code where we can select text with our mouse and then click or double click the highlighted / selected text and then it will wrap code tags around the highlighted text (in our editors). :) (0 Replies)
Discussion started by: Neo
0 Replies

4. Web Development

Simple Vue.js Component to Redirect to External Web Page Using Vue Router

Vue Router has some quirks and on of the quirks is that it is not reliable when adding external links using the vue-router library. After struggling with many solutions, I have found that creating a simple Vue.js component like this one seems to work the best (so far): Component Example: ... (0 Replies)
Discussion started by: Neo
0 Replies

5. Web Development

Vue JS 2 Tutorial by The Net Ninja: A Recommended Vue.js Video Tutorial Series

A number of people have asked me how to get started with Vue.js and my reply before today was to Google "Vue.js". That has changed and my recommendation to anyone who wants to learn the fastest growing, easiest to learn and use Vue.js web dev framework is to watch this video tutorial series: ... (0 Replies)
Discussion started by: Neo
0 Replies

6. Web Development

Vue.js component: Beautiful code highlighter

Sooner than later I will render forum discussions in Vue.js to complement the standard way of showing forum threads. Today, I ran across this component, vue-code-highlight Beautiful code syntax highlighting as Vue.js component. https://www.unix.com/members/1-albums225-picture1199.jpg ... (1 Reply)
Discussion started by: Neo
1 Replies
NetApp::Qtree(3pm)					User Contributed Perl Documentation					NetApp::Qtree(3pm)

NAME
NetApp::Qtree -- OO class for creating and managing qtrees SYNOPSIS
use NetApp::Filer; use NetApp::Qtree; my $filer = NetApp::Filer->new( .... ); # Create a tree, with all options in one call my $qtree = $filer->create_qtree( name => "/vol/vol1/qtreename", oplocks => 1, mode => 0755, security => 'unix', ); # Alternately, you can create it, and then change things my $qtree = $filer->create_qtree( name => "/vol/vol1/qtreename", mode => 0755, ); # The mode must be set when created $qtree->set_oplock(1); $qtree->set_security('unix'); DESCRIPTION
This class encapsulates a single NetApp qtree, and provides methods for querying information about the qtree, as well as methods for managing it. METHODS
set_security( $security ) This method method takes a single argument, which is the security value to set on the qtree. It must have one of the following values: unix ntfs mixed get_security Returns a string containing the current security setting of the qtree. set_oplocks( $boolean ) This method takes a boolean argument, and sets the oplocks attribute of the qtree to "enabled" if the value is true, and "disabled" if the value is false. get_oplocks Returns true is the oplocks are set to "enabled", false if they are set to "disabled". get_status Returns the status value for the qtree. It waill have the values such as: normal snapmirrored get_id Returns the qtree id. get_vfiler Returns the vfiler which owns the qtree. If vfilers are not licensed on the filer, this method will simply return a false value. perl v5.14.2 2008-11-26 NetApp::Qtree(3pm)
All times are GMT -4. The time now is 09:39 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy