This repository has been archived on 2025-10-03. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
rebuilding-uis/src/App.vue

26 lines
329 B
Vue
Raw Normal View History

2020-09-08 19:27:57 +01:00
<template>
2020-09-08 20:18:20 +01:00
<div id="app" class="text-black">
2020-09-08 20:02:56 +01:00
<navbar :name="title" />
2020-09-08 19:27:57 +01:00
</div>
</template>
<script>
2020-09-08 20:02:56 +01:00
import Navbar from '@/components/navbar'
2020-09-08 19:27:57 +01:00
export default {
name: 'App',
2020-09-08 20:02:56 +01:00
components: {
Navbar
},
data() {
return {
title: 'Bristol JS'
}
2020-09-08 19:27:57 +01:00
}
}
</script>
2020-09-08 19:29:08 +01:00
<style src="@/assets/css/tailwind.css"/>