Skip to content

Commit 50e59b9

Browse files
Merge pull request #10 from webdevnerdstuff/dev
Fixing some minor stuff
2 parents 44c6758 + 510a946 commit 50e59b9

File tree

4 files changed

+11
-8
lines changed

4 files changed

+11
-8
lines changed

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
All notable changes to the "vue-unicorn-log" plugin will be documented in this file.
33

44
## v1.0.0
5-
March 21, 2022
6-
[main] Initial release (webdevnerdstuff)
5+
March 26, 2022
6+
[main] Initial release (WebDevNerdStuff)

docs/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
function gtag() { dataLayer.push(arguments); }
44
gtag('js', new Date());
55

6-
gtag('config', 'UA-113524767-4');</script><meta name="base" content="https://webdevnerdstuff.github.io/vue-unicorn-log/"><meta name="charset" content="utf-8"><meta name="viewport" content="width=device-width,initial-scale=1"><meta name="keywords" content="vue, vue2, plugin, javascript, logging, log, console, devtools, unicorn, magical, webdevnerdstuff, wdns"><meta name="description" content="A magical 🦄 plugin to make coloring the console output easier and more flexible."><meta name="author" content="WebDevNerdStuff & Bunnies... lots and lots of bunnies! <[email protected]> (https://webdevnerdstuff.com)"><meta name="robots" content="index, follow"><meta name="googlebot" content="index, follow"><meta name="rating" content="General"><meta name="theme-color" content="#21252a"><meta name="og:type" content="website"><meta name="og:title" content="Vue Unicorn Log"><meta name="og:image" content="https://webdevnerdstuff.github.io/vue-unicorn-log/images/vue-unicorn-log-social.jpg"><meta name="og:image:alt" content="A magical 🦄 plugin to make coloring the console output easier and more flexible."><meta name="og:image:width" content="1200"><meta name="og:image:height" content="630"><meta name="og:description" content="A magical 🦄 plugin to make coloring the console output easier and more flexible."><meta name="og:site_name" content="Vue Unicorn Log"><meta name="og:locale" content="en_US"></head><body><noscript><strong>We're sorry but Vue Unicorn Log doesn't work properly without JavaScript enabled. Please enable it to continue.</strong></noscript><div id="app"></div><script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" crossorigin="anonymous"></script><script defer="defer" src="vue-unicorn-log.js?4fa838528fc867e4adc5"></script></body></html>
6+
gtag('config', 'UA-113524767-4');</script><meta name="base" content="https://webdevnerdstuff.github.io/vue-unicorn-log/"><meta name="charset" content="utf-8"><meta name="viewport" content="width=device-width,initial-scale=1"><meta name="keywords" content="vue, vue2, plugin, javascript, logging, log, console, devtools, unicorn, magical, webdevnerdstuff, wdns"><meta name="description" content="A magical 🦄 plugin to make coloring the console output easier and more flexible."><meta name="author" content="WebDevNerdStuff & Bunnies... lots and lots of bunnies! <[email protected]> (https://webdevnerdstuff.com)"><meta name="robots" content="index, follow"><meta name="googlebot" content="index, follow"><meta name="rating" content="General"><meta name="theme-color" content="#21252a"><meta name="og:type" content="website"><meta name="og:title" content="Vue Unicorn Log"><meta name="og:image" content="https://webdevnerdstuff.github.io/vue-unicorn-log/images/vue-unicorn-log-social.jpg"><meta name="og:image:alt" content="A magical 🦄 plugin to make coloring the console output easier and more flexible."><meta name="og:image:width" content="1200"><meta name="og:image:height" content="630"><meta name="og:description" content="A magical 🦄 plugin to make coloring the console output easier and more flexible."><meta name="og:site_name" content="Vue Unicorn Log"><meta name="og:locale" content="en_US"></head><body><noscript><strong>We're sorry but Vue Unicorn Log doesn't work properly without JavaScript enabled. Please enable it to continue.</strong></noscript><div id="app"></div><script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" crossorigin="anonymous"></script><script defer="defer" src="vue-unicorn-log.js?a343818c1119ade7b404"></script></body></html>

docs/vue-unicorn-log.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/components/Nav.vue

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<template>
22
<nav class="navbar sticky-top navbar-expand-lg navbar-dark bg-dark mb-5">
33
<div class="container">
4-
<a class="navbar-brand" href="/">🦄 Vue UnicornLog</a>
4+
<a class="navbar-brand" :href="links.docs">🦄 Vue UnicornLog</a>
55
<button
66
class="navbar-toggler"
77
type="button"
@@ -16,7 +16,9 @@
1616
<div class="collapse navbar-collapse" id="navbarSupportedContent">
1717
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
1818
<li class="nav-item">
19-
<a class="nav-link active" aria-current="page" href="/">Home</a>
19+
<a class="nav-link active" aria-current="page" :href="links.docs">
20+
Home
21+
</a>
2022
</li>
2123
<li class="nav-item dropdown">
2224
<a
@@ -149,8 +151,9 @@ export default {
149151
name: 'Nav',
150152
data: () => ({
151153
links: {
154+
docs: 'https://webdevnerdstuff.github.io/vue-unicorn-log/',
152155
github: 'https://github.com/webdevnerdstuff/vue-unicorn-log',
153-
npm: 'https://github.com/webdevnerdstuff/vue-unicorn-log',
156+
npm: 'https://www.npmjs.com/package/vue-unicorn-log',
154157
},
155158
}),
156159
};

0 commit comments

Comments
 (0)