Test Hero component
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
<template>
|
||||
<div>
|
||||
<Header />
|
||||
<Hero title="wazo-lab.io" />
|
||||
<Hero title="wazo-lab.io" :actions="heroActions" />
|
||||
<Grid :dataSource="projects" />
|
||||
<Contact />
|
||||
</div>
|
||||
@@ -13,7 +13,21 @@ import projects from "@/content/projects.json";
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
projects: projects
|
||||
projects: projects,
|
||||
heroActions: [
|
||||
{
|
||||
title: "Projects",
|
||||
url: "#projects",
|
||||
target: "_self",
|
||||
rel: "noopen noreferrer"
|
||||
},
|
||||
{
|
||||
title: "Contact",
|
||||
url: "#contact",
|
||||
target: "_self",
|
||||
rel: "noopen noreferrer"
|
||||
}
|
||||
]
|
||||
};
|
||||
}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user