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
304 B
Vue
Raw Normal View History

2018-11-19 19:54:46 +00:00
<template>
<div id="app">
2018-11-20 02:54:21 +00:00
<Welcome drupal-version="8.6.3"/>
2018-11-19 19:54:46 +00:00
</div>
</template>
<script>
2018-11-20 01:42:41 +00:00
import Welcome from './components/Welcome.vue'
2018-11-19 19:54:46 +00:00
export default {
name: 'app',
2018-11-19 19:54:46 +00:00
components: {
2018-11-20 01:42:41 +00:00
Welcome,
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>