Skip to content

Instantly share code, notes, and snippets.

@blogcacanid
Created October 3, 2020 23:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save blogcacanid/44b59d1b6dcba9e29e680850f94ac2bb to your computer and use it in GitHub Desktop.
Save blogcacanid/44b59d1b6dcba9e29e680850f94ac2bb to your computer and use it in GitHub Desktop.
Home.vue - Integrasi AdminLTE 3.0.5 Vue
<template>
<div id="home">
<!-- Navbar -->
<Navbar/>
<!-- /.navbar -->
<!-- Main Sidebar Container -->
<Sidebar/>
<!-- Content Wrapper. Contains page content -->
<div class="content-wrapper">
<!-- Content Header (Page header) -->
<div class="content-header">
<div class="container-fluid">
<div class="row mb-2">
<div class="col-sm-6">
<h1 class="m-0 text-dark">Integrasi AdminLTE 3.0.5 Dengan Vue</h1>
</div><!-- /.col -->
<div class="col-sm-6">
<ol class="breadcrumb float-sm-right">
<li class="breadcrumb-item"><router-link :to="{name: 'home'}">Home</router-link></li>
<li class="breadcrumb-item active">Home Page</li>
</ol>
</div><!-- /.col -->
</div><!-- /.row -->
</div><!-- /.container-fluid -->
</div>
<!-- /.content-header -->
<!-- Main content -->
<section class="content">
<!-- Default box -->
<div class="card">
<div class="card-header">
<h3 class="card-title">
<i class="fas fa-home nav-icon"></i>
&nbsp;&nbsp;Home
</h3>
<div class="card-tools">
<button type="button" class="btn btn-tool" data-card-widget="collapse" data-toggle="tooltip" title="Collapse">
<i class="fas fa-minus"></i></button>
<button type="button" class="btn btn-tool" data-card-widget="remove" data-toggle="tooltip" title="Remove">
<i class="fas fa-times"></i></button>
</div>
</div>
<div class="card-body">
<h3>What is Lorem Ipsum?</h3>
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
</div>
<!-- /.card-body -->
<div class="card-footer">
Footer
</div>
<!-- /.card-footer-->
</div>
<!-- /.card -->
</section>
<!-- /.content -->
</div>
<!-- /.content-wrapper -->
<Footer/>
</div>
</template>
<script>
import Navbar from './_layouts/Navbar.vue'
import Sidebar from './_layouts/Sidebar.vue'
import Footer from './_layouts/Footer.vue'
export default {
name: 'App',
components: {
Navbar,
Sidebar,
Footer
}
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment