This repository has been archived on 2025-01-07. 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-bartik/src/App.vue

23 lines
329 B
Vue
Raw Normal View History

2018-11-19 19:54:46 +00:00
<template>
<div id="app">
2018-11-19 20:11:53 +00:00
<WelcomeToDrupal version="8.6.3"/>
2018-11-19 19:54:46 +00:00
</div>
</template>
<script>
2018-11-19 20:11:53 +00:00
import WelcomeToDrupal from './components/WelcomeToDrupal.vue'
2018-11-19 19:54:46 +00:00
export default {
name: 'app',
components: {
2018-11-19 20:11:53 +00:00
WelcomeToDrupal,
2018-11-19 19:54:46 +00:00
}
}
</script>
<style>
2018-11-19 20:11:53 +00:00
@tailwind preflight;
@tailwind components;
@tailwind utilities;
2018-11-19 19:54:46 +00:00
</style>