Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Migration to vu2.x #53

Open
wants to merge 34 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
05a9196
reviewing updates
Feb 21, 2017
9ca58a1
fix rendering problems
pongoman Feb 23, 2017
3e900bc
index posts working no pagnt
pongoman Mar 30, 2017
78f2089
fix param name
pongoman Mar 30, 2017
1f1eb46
restore vue-multiselect
pongoman Mar 30, 2017
cfcf200
simple mde editor
pongoman Mar 30, 2017
7ce1541
fix names
pongoman Mar 30, 2017
58c920e
update categories page
pongoman Mar 30, 2017
092da98
update packages
pongoman Oct 9, 2017
4142604
add names
pongoman Oct 9, 2017
408ce3a
attempt to fix paginator error ( You are using the runtime-only build…
pongoman Oct 9, 2017
1f3c2db
import axios - router.push fails
pongoman Oct 9, 2017
bd70982
add & update names
pongoman Oct 10, 2017
be51eef
update code with style guide
pongoman Oct 10, 2017
04cd430
replace v-bind with shothand
pongoman Oct 10, 2017
413314d
add missing vue-multiselect styles
pongoman Oct 10, 2017
c8cad07
change var to const
pongoman Oct 10, 2017
67c4b46
add axios via script
pongoman Oct 10, 2017
5968b1f
replace vue-resource calls with axios
pongoman Oct 10, 2017
3991d3c
change subheading of index page
pongoman Oct 11, 2017
b375643
filter bath to dashboard if user is not logged in, redirect to login
pongoman Oct 17, 2017
ff727b5
remove prop type
pongoman Oct 21, 2017
f236806
create post method
pongoman Oct 21, 2017
a985333
change axios usage
pongoman Oct 21, 2017
cb56859
change blog's subtitles
pongoman Oct 21, 2017
84b1d3a
managing packages
pongoman Oct 21, 2017
f2c9c34
change app id
pongoman Oct 21, 2017
7b349f3
point to compiler included build
pongoman Oct 21, 2017
7ebbeea
bind axios to window
pongoman Oct 21, 2017
40e5191
codes according to style guide
pongoman Dec 11, 2017
0960c99
update methods and columns
pongoman Jan 4, 2018
0ad1895
update methods in order to work properly
pongoman Jan 4, 2018
741e3d9
update methods in order to work properly
pongoman Jan 4, 2018
e632fa3
update html
pongoman Jan 4, 2018
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
change app id
pongoman committed Oct 21, 2017
commit f2c9c34db04fad7538712b61ecdd9b3a1a253054
7 changes: 2 additions & 5 deletions resources/assets/js/main.js
Original file line number Diff line number Diff line change
@@ -10,11 +10,9 @@ import Profile from './components/Profile.vue'
import VueRouter from 'vue-router'
import axios from 'axios'
Vue.use(VueRouter)
Vue.prototype.$http = axios

Vue.prototype.$http = axios

// produces error
// Vue.use(axios)

/* eslint-disable no-new */

@@ -68,8 +66,7 @@ const router = new VueRouter({
})

const app = new Vue({
el: '#dik',
el: '#dashboard',
router,
render: h => h(App)
// template: `<app>HI</app>`
})
4 changes: 2 additions & 2 deletions resources/views/admin/index.blade.php
Original file line number Diff line number Diff line change
@@ -21,14 +21,14 @@
<!-- Theme style -->
<link rel="stylesheet" href="/lte/css/AdminLTE.css">
<link rel="stylesheet" href="/lte/css/skin-blue.min.css">
<!-- vue-multiselect styles - change to import -->
<!-- vue-multiselect styles -->
<link rel="stylesheet" href="https://unpkg.com/vue-multiselect@2.0.0/dist/vue-multiselect.min.css">
<!-- axios -->
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>

</head>
<body class="skin-blue sidebar-mini">
<div id="dik">
<div id="dashboard">

</div>
<script>