Skip to content

Commit aebafc8

Browse files
committed
update
1 parent 26697b6 commit aebafc8

File tree

8 files changed

+44
-31
lines changed

8 files changed

+44
-31
lines changed

Vue_Full_Project/index.html

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,6 @@
55
<meta http-equiv="X-UA-Compatible" content="IE=edge">
66
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
77
<title>CoreUI - Open Source Bootstrap Admin Template</title>
8-
9-
<!-- Icons -->
10-
<link href="static/css/font-awesome.min.css" rel="stylesheet">
11-
<link href="static/css/simple-line-icons.css" rel="stylesheet">
12-
13-
<!-- Main styles for this application -->
14-
<link href="static/css/style.css" rel="stylesheet">
158
</head>
169

1710
<!-- BODY options, add following classes to body to change options
@@ -31,8 +24,11 @@
3124
2. '.aside-menu-hidden' - Hidden Aside Menu
3225
3. '.aside-menu-off-canvas' - Off Canvas Aside Menu
3326
27+
// Breadcrumb options
28+
1. '.breadcrumb-fixed' - Fixed Breadcrumb
29+
3430
// Footer options
35-
1. '.footer-fixed' - Fixed footer
31+
1. '.footer-fixed' - Fixed footer
3632
3733
-->
3834

Vue_Full_Project/src/App.vue

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,16 @@ export default {
77
name: 'app'
88
}
99
</script>
10+
11+
<style>
12+
// Import Font Awesome Icons Set
13+
$fa-font-path: "~font-awesome/fonts/";
14+
@import "~font-awesome/css/font-awesome.min.css";
15+
// Import Simple Line Icons Set
16+
$simple-line-font-path: "~simple-line-icons/fonts/";
17+
@import "~simple-line-icons/css/simple-line-icons.css";
18+
</style>
19+
<style lang="scss">
20+
// Import Main styles for this application
21+
@import "./scss/style";
22+
</style>

Vue_Full_Project/src/assets/logo.png

-6.69 KB
Binary file not shown.

Vue_Full_Project/src/main.js

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,18 @@
11
// The Vue build version to load with the `import` command
22
// (runtime-only or standalone) has been set in webpack.base.conf with an alias.
33
import Vue from 'vue'
4+
import BootstrapVue from 'bootstrap-vue'
45
import App from './App'
56
import router from './router'
67

8+
Vue.use(BootstrapVue)
9+
710
/* eslint-disable no-new */
811
new Vue({
912
el: '#app',
1013
router,
1114
template: '<App/>',
12-
components: { App }
15+
components: {
16+
App
17+
}
1318
})

Vue_Full_Project/src/views/pages/Login.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<div class="col-md-8">
66
<div class="card-group mb-0">
77
<div class="card p-4">
8-
<div class="card-block">
8+
<div class="card-body">
99
<h1>Login</h1>
1010
<p class="text-muted">Sign In to your account</p>
1111
<div class="input-group mb-3">
@@ -26,8 +26,8 @@
2626
</div>
2727
</div>
2828
</div>
29-
<div class="card card-inverse card-primary py-5 d-md-down-none" style="width:44%">
30-
<div class="card-block text-center">
29+
<div class="card text-white bg-primary py-5 d-md-down-none" style="width:44%">
30+
<div class="card-body text-center">
3131
<div>
3232
<h2>Sign up</h2>
3333
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>

Vue_Full_Project/src/views/pages/Register.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<div class="row justify-content-center">
55
<div class="col-md-6">
66
<div class="card mx-4">
7-
<div class="card-block p-4">
7+
<div class="card-body p-4">
88
<h1>Register</h1>
99
<p class="text-muted">Create your account</p>
1010
<div class="input-group mb-3">

Vue_Starter/index.html

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,6 @@
55
<meta http-equiv="X-UA-Compatible" content="IE=edge">
66
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
77
<title>CoreUI - Open Source Bootstrap Admin Template</title>
8-
9-
<!-- Icons -->
10-
<link href="static/css/font-awesome.min.css" rel="stylesheet">
11-
<link href="static/css/simple-line-icons.css" rel="stylesheet">
12-
13-
<!-- Main styles for this application -->
14-
<link href="static/css/style.css" rel="stylesheet">
158
</head>
169

1710
<!-- BODY options, add following classes to body to change options
@@ -31,8 +24,11 @@
3124
2. '.aside-menu-hidden' - Hidden Aside Menu
3225
3. '.aside-menu-off-canvas' - Off Canvas Aside Menu
3326
27+
// Breadcrumb options
28+
1. '.breadcrumb-fixed' - Fixed Breadcrumb
29+
3430
// Footer options
35-
1. '.footer-fixed' - Fixed footer
31+
1. '.footer-fixed' - Fixed footer
3632
3733
-->
3834

Vue_Starter/src/App.vue

Lines changed: 13 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,17 @@ export default {
77
name: 'app'
88
}
99
</script>
10-
<!--
10+
1111
<style>
12-
#app {
13-
font-family: 'Avenir', Helvetica, Arial, sans-serif;
14-
-webkit-font-smoothing: antialiased;
15-
-moz-osx-font-smoothing: grayscale;
16-
text-align: center;
17-
color: #2c3e50;
18-
margin-top: 60px;
19-
}
20-
</style> -->
12+
// Import Font Awesome Icons Set
13+
$fa-font-path: "~font-awesome/fonts/";
14+
@import "~font-awesome/css/font-awesome.min.css";
15+
// Import Simple Line Icons Set
16+
$simple-line-font-path: "~simple-line-icons/fonts/";
17+
@import "~simple-line-icons/css/simple-line-icons.css";
18+
</style>
19+
<style lang="scss">
20+
// Import Main styles for this application
21+
@import "./scss/style";
22+
</style>
23+

0 commit comments

Comments
 (0)