Skip to content

Commit a052383

Browse files
committed
edit package.json
1 parent a45b55c commit a052383

File tree

3 files changed

+24
-20
lines changed

3 files changed

+24
-20
lines changed

.gitignore

+4-1
Original file line numberDiff line numberDiff line change
@@ -104,4 +104,7 @@ dist
104104
.tern-port
105105

106106
# mac os file
107-
.DS_Store
107+
.DS_Store
108+
109+
# inspect file
110+
output.js

package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@
66
"serve": "vue-cli-service serve",
77
"build": "vue-cli-service build",
88
"dev-build": "vue-cli-service build --mode development",
9-
"lint": "vue-cli-service lint"
9+
"lint": "vue-cli-service lint",
10+
"inspect": "vue inspect > output.js"
1011
},
1112
"dependencies": {
1213
"@fortawesome/fontawesome-free": "^5.12.1",

src/components/layout/main-header.vue

+18-18
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
<template>
22
<header class="d-print-none shadow-sm">
33
<div class="shadow-sm navbar navbar-expand-lg navbar-dark bg-primary">
4-
<a
5-
class="navbar-brand d-inline-block text-truncate"
6-
href="#"
4+
<a
5+
class="navbar-brand d-inline-block text-truncate"
6+
href="#"
77
>
8-
<img
9-
src="@/assets/logo.png"
10-
width="30"
11-
height="30"
12-
alt="logo"
8+
<img
9+
src="@/assets/logo.png"
10+
width="30"
11+
height="30"
12+
alt="logo"
1313
>
1414
{{ $t('systemName') }}
15-
<small class="navbar-text">(bate 0.1)</small>
15+
<small class="navbar-text">(bate 1.0)</small>
1616
</a>
1717
<button
1818
class="navbar-toggler"
@@ -25,9 +25,9 @@
2525
>
2626
<span class="navbar-toggler-icon" />
2727
</button>
28-
<div
29-
id="navbarSupportedContent"
30-
class="collapse navbar-collapse"
28+
<div
29+
id="navbarSupportedContent"
30+
class="collapse navbar-collapse"
3131
>
3232
<ul class="navbar-nav mr-auto mt-2 mt-lg-0">
3333
<li class="nav-item navbar-text dropdown" />
@@ -50,14 +50,14 @@
5050
</div>
5151
<div class="bg-primary border-bottom border-light shadow-sm d-flex w-100">
5252
<!-- <dropdown-menu /> -->
53-
<router-link
54-
class="btn btn-primary d-inline-flex"
55-
to="/"
56-
role="button"
53+
<router-link
54+
class="btn btn-primary d-inline-flex"
55+
to="/"
56+
role="button"
5757
>
5858
<i class="fas fa-home align-self-center px-1" />
59-
<font class="align-self-center px-1">
60-
Home
59+
<font class="align-self-center px-1">
60+
Home
6161
</font>
6262
</router-link>
6363
<nav-tabs class="d-inline-flex overflow-auto" />

0 commit comments

Comments
 (0)