Skip to content
This repository has been archived by the owner on May 7, 2020. It is now read-only.

Commit

Permalink
fixing readme
Browse files Browse the repository at this point in the history
  • Loading branch information
the94air committed Dec 21, 2018
1 parent 1181842 commit 7298663
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ Vue.use(Notifications);
```
## Components
### Navbar
```
```vue
<template>
<nav class="navbar navbar-fixed">
<div class="container">
Expand Down Expand Up @@ -231,7 +231,7 @@ Vue.use(Notifications);
```
### Panel
to build the panel area and the sidebar you will need to use `vue-slidout` package.
```
```vue
<template>
<!-- panel main component -->
<Slideout menu="#sidebar" panel="#content">
Expand Down Expand Up @@ -326,7 +326,7 @@ to build the panel area and the sidebar you will need to use `vue-slidout` packa
</script>
```
### Alerts
```
```vue
<template>
<div>
Expand Down Expand Up @@ -371,7 +371,7 @@ to build the panel area and the sidebar you will need to use `vue-slidout` packa
```
### Notification
If you want to use the notification component some were else:
```
```vue
<template>
<div class="notification">
<div>Your new post has been saved!</div>
Expand Down Expand Up @@ -410,7 +410,7 @@ If you want to use the notification component some were else:
```

### Horizontal Form
```
```vue
<template>
<form @submit.prevent="(e) => {}">
<div class="flex flex-wrap -mx-2">
Expand Down Expand Up @@ -519,7 +519,7 @@ If you want to use the notification component some were else:
</script>
```
### Vertical Form
```
```vue
<template>
<form @submit.prevent="(e) => {}">
<div class="input">
Expand Down Expand Up @@ -683,7 +683,7 @@ If you want to use the notification component some were else:
```

### Pagination
```
```vue
<template>
<nav class="paginate">
<a class="previous" href="#"><Fa :icon="['fas', 'arrow-left']" /> Prev</a>
Expand All @@ -704,7 +704,7 @@ If you want to use the notification component some were else:
```

### Table
```
```vue
<template>
<div class="w-full">
<h2 class="mb-4">Table example</h2>
Expand Down Expand Up @@ -751,7 +751,7 @@ If you want to use the notification component some were else:
```

### DataTable
```
```vue
<template>
<div class="w-full">
<h2 class="mb-4">DataTable example</h2>
Expand Down Expand Up @@ -853,7 +853,7 @@ If you want to use the notification component some were else:
```

### Sign in
```
```vue
<template>
<div class="h-screen">
<div class="auth h-full">
Expand Down Expand Up @@ -891,7 +891,7 @@ If you want to use the notification component some were else:
```

### Sign up
```
```vue
<template>
<div class="h-screen">
<div class="auth h-full">
Expand Down

0 comments on commit 7298663

Please sign in to comment.